From 679f4c94d978357a68df1be40798e068631ae4a8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Mon, 12 Jan 2026 17:33:20 +0100 Subject: [PATCH] Updated button size --- lib/presentation/widgets/buttons/main_menu_button.dart | 6 +++--- pubspec.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/presentation/widgets/buttons/main_menu_button.dart b/lib/presentation/widgets/buttons/main_menu_button.dart index 9e6ed80..d29566c 100644 --- a/lib/presentation/widgets/buttons/main_menu_button.dart +++ b/lib/presentation/widgets/buttons/main_menu_button.dart @@ -66,19 +66,19 @@ class _MainMenuButtonState extends State color: Colors.white, borderRadius: BorderRadius.circular(30), ), - padding: const EdgeInsets.symmetric(horizontal: 18, vertical: 15), + padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 14), child: Row( mainAxisSize: MainAxisSize.min, mainAxisAlignment: MainAxisAlignment.center, children: [ if (widget.icon != null) ...[ - Icon(widget.icon, size: 28, color: Colors.black), + Icon(widget.icon, size: 26, color: Colors.black), const SizedBox(width: 7), ], Text( widget.text, style: const TextStyle( - fontSize: 20, + fontSize: 18, fontWeight: FontWeight.bold, color: Colors.black, ), diff --git a/pubspec.yaml b/pubspec.yaml index 7978e22..6ff77df 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.1+159 +version: 0.0.1+160 environment: sdk: ^3.8.1