minor UI change

OmarHatem committed Nov 27, 2024 at 19:33 UTC 13c4fbd225a540f82081e38ad7355878646e057c
2 files changed +2 -1
lib/src/screens/dashboard/dashboard_page.dart
+1 -1
@@ -285,7 +285,7 @@ class _DashboardPageView extends BasePage {
285 .syncedBackgroundColor,
286 ),
287 child: Container(
288 - padding: EdgeInsets.only(left: 24, right: 32),
288 + padding: EdgeInsets.symmetric(horizontal: 10),
289 child: Row(
290 mainAxisAlignment: MainAxisAlignment.spaceBetween,
291 children: MainActions.all
lib/src/screens/dashboard/widgets/action_button.dart
+1
@@ -50,6 +50,7 @@ class ActionButton extends StatelessWidget {
50 fontSize: 10,
51 color: textColor ??
52 Theme.of(context).extension<DashboardPageTheme>()!.cardTextColor),
53 + textAlign: TextAlign.center,
54 )
55 ],
56 ),