|
@@ -1107,6 +1107,7 @@ class _PedidoFormState extends State<PedidoForm> {
|
|
|
// ExpansionTile para todos los toppings
|
|
|
if (item.selectableToppings.isNotEmpty)
|
|
|
ExpansionTile(
|
|
|
+ initiallyExpanded: true,
|
|
|
title: const Text(
|
|
|
'Toppings',
|
|
|
style: TextStyle(
|
|
@@ -1121,7 +1122,7 @@ class _PedidoFormState extends State<PedidoForm> {
|
|
|
return ExpansionTile(
|
|
|
initiallyExpanded: true,
|
|
|
title: Text(
|
|
|
- categoria.nombre!,
|
|
|
+ '${categoria.nombre} (Hasta ${categoria.maximo ?? 0})',
|
|
|
style: const TextStyle(
|
|
|
fontWeight: FontWeight.bold, fontSize: 16),
|
|
|
),
|