MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit 974d6e9b56 - 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,