MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit db30b0fd5a - Show all commits

View File

@@ -31,7 +31,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
/// Controller for the match name input field /// Controller for the match name input field
final TextEditingController _matchNameController = TextEditingController(); final TextEditingController _matchNameController = TextEditingController();
String hintText = "Match Name"; String hintText = 'Match Name';
/// List of all groups from the database /// List of all groups from the database
List<Group> groupsList = []; List<Group> groupsList = [];
@@ -159,7 +159,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
(r) => r.$1 == selectedRuleset, (r) => r.$1 == selectedRuleset,
); );
} else { } else {
hintText = "Match Name"; hintText = 'Match Name';
selectedRuleset = null; selectedRuleset = null;
} }
}); });