MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
2 changed files with 3 additions and 4 deletions
Showing only changes of commit cb7804cf55 - Show all commits

View File

@@ -110,8 +110,10 @@ class _CreateMatchViewState extends State<CreateMatchView> {
]).then((result) async {
groupsList = result[0] as List<Group>;
playerList = result[1] as List<Player>;
setState(() {
filteredPlayerList = List.from(playerList);
});
});
filteredPlayerList = List.from(playerList);
}
@override

View File

@@ -182,9 +182,6 @@ class _PlayerSelectionState extends State<PlayerSelection> {
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
),
const SizedBox(height: 10),
/*
*/
Expanded(
child: AppSkeleton(
enabled: isLoading,