From fd13fe6e903bc61d4843200385203bdbe9210da4 Mon Sep 17 00:00:00 2001 From: mathiskirchner Date: Sat, 22 Nov 2025 17:58:33 +0100 Subject: [PATCH] made CustomWidthButton's position adaptive to bottom padding of safearea --- lib/presentation/views/main_menu/groups_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/groups_view.dart b/lib/presentation/views/main_menu/groups_view.dart index 5a7a2eb..4bf9cba 100644 --- a/lib/presentation/views/main_menu/groups_view.dart +++ b/lib/presentation/views/main_menu/groups_view.dart @@ -103,7 +103,7 @@ class _GroupsViewState extends State { ), Positioned( - bottom: MediaQuery.paddingOf(context).bottom + 15, + bottom: MediaQuery.paddingOf(context).bottom, child: CustomWidthButton( text: 'Create Group', sizeRelativeToWidth: 0.90,