Made bottom padding adaptive to screen
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m8s
Pull Request Pipeline / lint (pull_request) Successful in 2m8s

This commit is contained in:
2025-11-22 17:40:24 +01:00
parent 28ed22ce73
commit df3215ef76

View File

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