From 8ca4e3210e2b2e15263dbe33ff5bd7890fdb958e Mon Sep 17 00:00:00 2001 From: Mathis Kirchner Date: Sun, 11 Jan 2026 11:28:21 +0100 Subject: [PATCH] remove button in match view for testing --- lib/presentation/views/main_menu/match_view/match_view.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/match_view/match_view.dart b/lib/presentation/views/main_menu/match_view/match_view.dart index ecfa9ca..9da007b 100644 --- a/lib/presentation/views/main_menu/match_view/match_view.dart +++ b/lib/presentation/views/main_menu/match_view/match_view.dart @@ -105,7 +105,8 @@ class _MatchViewState extends State { ), Positioned( bottom: MediaQuery.paddingOf(context).bottom, - child: CustomWidthButton( + child: SizedBox.shrink() + /* CustomWidthButton( text: loc.create_match, sizeRelativeToWidth: 0.90, onPressed: () async { @@ -118,6 +119,7 @@ class _MatchViewState extends State { ); }, ), + */ ), ], ),