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 committed by Bart Ribbers
parent 93fc1d1fbc
commit b78029f018

View file

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