Adjust bottom padding in GroupsView list based on media query padding

This commit is contained in:
2025-11-22 22:49:28 +01:00
parent 546a3e3717
commit cc04e05557

View File

@@ -93,7 +93,9 @@ class _GroupsViewState extends State<GroupsView> {
itemCount: groups.length + 1,
itemBuilder: (BuildContext context, int index) {
if (index == groups.length) {
return const SizedBox(height: 60);
return SizedBox(
height: MediaQuery.paddingOf(context).bottom - 20,
);
}
return GroupTile(group: groups[index]);
},