if meals logging gets a snackbar, ingredients logging should too

This commit is contained in:
Dieter Plaetinck
2024-06-01 21:52:23 +02:00
parent 3922549be8
commit fc947e9e59

View File

@@ -135,6 +135,14 @@ Widget IngredientLogForm(NutritionalPlan plan) {
onSave: (BuildContext context, MealItem mealItem, DateTime? dt) {
Provider.of<NutritionPlansProvider>(context, listen: false)
.logIngredientToDiary(mealItem, plan.id!, dt);
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text(
'Ingredient logged to diary',
textAlign: TextAlign.center,
),
),
);
},
withDate: true);
}