Update _updateFilterText
so that it also updates futureRecipe
when the filter changes.
void _updateFilterText(String val) {
print(val);
setState(() {
mealTypeFilter = val;
futureRecipe = RecipeDataService().getRecipes(mealTypeFilter);
});
}