From c8e784db9d733c6bcdc0ed689da54b4092ba9a0a Mon Sep 17 00:00:00 2001 From: broodjeaap89 Date: Tue, 31 Aug 2021 18:55:39 +0200 Subject: [PATCH] named the checkbox column of the recipe table on the pizza event page 'bought' --- lib/pages/PizzaEventPage.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/PizzaEventPage.dart b/lib/pages/PizzaEventPage.dart index 5ec8337..eb92660 100644 --- a/lib/pages/PizzaEventPage.dart +++ b/lib/pages/PizzaEventPage.dart @@ -72,7 +72,7 @@ class PizzaEventPageState extends State { children: [ TableCell(child: Text("Ingredient")), TableCell(child: Text("Total")), - TableCell(child: Center(child: Text("0/4"))) + TableCell(child: Center(child: Text("Bought"))) ] ) ] + this.widget.pizzaEvent.recipe.ingredients.map((ingredient) => buildIngredientWidget(ingredient)).toList(),