1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00
This commit is contained in:
Yan Maniez 2020-02-27 23:30:22 +01:00
parent f33715da6d
commit 4f8a37a6b9
3 changed files with 11 additions and 2 deletions

View file

@ -174,6 +174,12 @@ class _MyHomePageState extends State<MyHomePage> {
setState(() {
filter.rangeValues = values;
});
loadChildrenItems(item, filters).then((value) => {
setState(() {
this.item = item;
this.filters = filters;
})
});
});
}