changed widths of columns on the pizza event page, so that 'bought' wasn't being clipped

This commit is contained in:
broodjeaap89 2021-08-31 21:17:02 +02:00
parent bb3d825d4b
commit 44c830ab7e
2 changed files with 5 additions and 6 deletions

View file

@ -63,8 +63,8 @@ class PizzaEventPageState extends State<PizzaEventPage> {
),
Table(
columnWidths: const <int, TableColumnWidth>{
0: FlexColumnWidth(5),
1: FlexColumnWidth(5),
0: FlexColumnWidth(4),
1: FlexColumnWidth(3),
3: FlexColumnWidth(1),
},
children: <TableRow>[
@ -79,8 +79,8 @@ class PizzaEventPageState extends State<PizzaEventPage> {
),
Table(
columnWidths: const <int, TableColumnWidth>{
0: FlexColumnWidth(5),
1: FlexColumnWidth(5),
0: FlexColumnWidth(4),
1: FlexColumnWidth(3),
2: FlexColumnWidth(1),
},
children: <TableRow>[

View file

@ -10,5 +10,4 @@
## Refactor
## Bug
'bought' text on pizza event page is clipped
## Bug