Functioning Ingredient BottomSheet

This commit is contained in:
2025-02-11 21:52:22 +01:00
parent 2b8e1dc2cb
commit 40429832ab
4 changed files with 315 additions and 3 deletions

View File

@@ -7,7 +7,12 @@ class IngredientListEntry {
final Unit unit;
final bool optional;
IngredientListEntry(this.ingredient, this.amount, this.unit, this.optional);
IngredientListEntry({
required this.ingredient,
required this.amount,
required this.unit,
this.optional = false,
});
@override
bool operator ==(Object other) =>