named the checkbox column of the recipe table on the pizza event page 'bought'
This commit is contained in:
parent
0f22e45b21
commit
c8e784db9d
1 changed files with 1 additions and 1 deletions
|
@ -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(),
|
||||
|
|
Loading…
Add table
Reference in a new issue