fix: move buttons from basepage to the bottom

This commit is contained in:
Freek van de Ven 2024-07-24 13:09:14 +02:00
parent fc0fcc7c9c
commit 5d24fb490e

View file

@ -45,7 +45,10 @@ class BasePage extends StatelessWidget {
), ),
child: Align( child: Align(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
child: Column(children: buttons), child: Column(
mainAxisSize: MainAxisSize.min,
children: buttons,
),
), ),
), ),
), ),