Added comment

This commit is contained in:
2026-03-06 20:59:13 +01:00
parent 598b8d0f9e
commit 688a8a1706
2 changed files with 3 additions and 1 deletions

View File

@@ -248,7 +248,7 @@ abstract class AppLocalizations {
/// **'Edit Group'** /// **'Edit Group'**
String get edit_group; String get edit_group;
/// No description provided for @edit_match. /// Button & Appbar label for editing a match
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'Edit Match'** /// **'Edit Match'**

View File

@@ -321,6 +321,8 @@ class _CreateMatchViewState extends State<CreateMatchView> {
widget.onMatchUpdated?.call(updatedMatch); widget.onMatchUpdated?.call(updatedMatch);
} }
// Creates a new match and adds it to the database.
// Returns the created match.
Future<Match> createMatch() async { Future<Match> createMatch() async {
final tempGame = await getTemporaryGame(); final tempGame = await getTemporaryGame();