Bearbeiten und Löschen von Matches #171

Merged
sneeex merged 64 commits from feature/120-bearbeiten-und-loeschen-von-matches into development 2026-03-08 08:28:10 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 688a8a1706 - Show all commits

View File

@@ -248,7 +248,7 @@ abstract class AppLocalizations {
/// **'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:
/// **'Edit Match'**

View File

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