named the checkbox column of the recipe table on the pizza event page 'bought'

This commit is contained in:
broodjeaap89 2021-08-31 18:55:39 +02:00
parent 0f22e45b21
commit c8e784db9d

View file

@ -72,7 +72,7 @@ class PizzaEventPageState extends State<PizzaEventPage> {
children: <TableCell>[
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(),