minor UI change

This commit is contained in:
OmarHatem 2024-11-27 19:33:53 +02:00
parent 125c40b49a
commit 13c4fbd225
2 changed files with 2 additions and 1 deletions

View file

@ -285,7 +285,7 @@ class _DashboardPageView extends BasePage {
.syncedBackgroundColor, .syncedBackgroundColor,
), ),
child: Container( child: Container(
padding: EdgeInsets.only(left: 24, right: 32), padding: EdgeInsets.symmetric(horizontal: 10),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: MainActions.all children: MainActions.all

View file

@ -50,6 +50,7 @@ class ActionButton extends StatelessWidget {
fontSize: 10, fontSize: 10,
color: textColor ?? color: textColor ??
Theme.of(context).extension<DashboardPageTheme>()!.cardTextColor), Theme.of(context).extension<DashboardPageTheme>()!.cardTextColor),
textAlign: TextAlign.center,
) )
], ],
), ),