Erstelle Spieler direkt zu ausgewählten Spielern, Gruppen Sortierung nach Timestamp + Bugfixes #49

Merged
flixcoo merged 4 commits from feature/47-spieler-zur-gruppe-und-gruppen-sortierung into development 2025-11-22 23:34:47 +00:00
Showing only changes of commit cc04e05557 - Show all commits

View File

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