added pizza type to the PizzaEventWidget

This commit is contained in:
broodjeaap89 2021-07-09 17:38:26 +02:00
parent 73ea84ec69
commit 1339bbdff2

View file

@ -66,7 +66,14 @@ class PizzaEventWidget extends StatelessWidget {
]
),
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Text(dateFormatter.format(pizzaEvent.dateTime)),
Text(pizzaEvent.type)
],
),
]
)
)