made CustomWidthButton's position adaptive to bottom padding of safearea
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m6s
Pull Request Pipeline / lint (pull_request) Successful in 2m6s

This commit is contained in:
2025-11-22 17:58:33 +01:00
parent 5062196463
commit fd13fe6e90

View File

@@ -103,7 +103,7 @@ class _GroupsViewState extends State<GroupsView> {
), ),
Positioned( Positioned(
bottom: MediaQuery.paddingOf(context).bottom + 15, bottom: MediaQuery.paddingOf(context).bottom,
child: CustomWidthButton( child: CustomWidthButton(
text: 'Create Group', text: 'Create Group',
sizeRelativeToWidth: 0.90, sizeRelativeToWidth: 0.90,