Gelbes Aufblinken der Recent Games auf der Homepage behoben & Anpassung des Recent-Games-Containers vorgenommen. #64

Merged
flixcoo merged 2 commits from bug/63-übergang-auf-home-seite-blitz-kurz-gelb-auf into development 2025-11-23 21:51:04 +00:00
Showing only changes of commit f25737cdc5 - Show all commits

View File

@@ -209,12 +209,13 @@ class _CreateGroupViewState extends State<CreateGroupView> {
), ),
); );
} }
if (snapshot.connectionState == bool doneLoading =
ConnectionState.done && snapshot.connectionState ==
(!snapshot.hasData || ConnectionState.done;
snapshot.data!.isEmpty || bool snapshotDataEmpty =
(selectedPlayers.isEmpty && !snapshot.hasData || snapshot.data!.isEmpty;
allPlayers.isEmpty))) { if (doneLoading &&
(snapshotDataEmpty && allPlayers.isEmpty)) {
return const Center( return const Center(
child: TopCenteredMessage( child: TopCenteredMessage(
icon: Icons.info, icon: Icons.info,