WIP: Bearbeiten und Löschen von Matches #171

Draft
flixcoo wants to merge 35 commits from feature/120-bearbeiten-und-loeschen-von-matches into development
Showing only changes of commit 016c1ceb6e - Show all commits

View File

@@ -83,7 +83,7 @@ class _GroupDetailViewState extends State<GroupDetailView> {
],
),
).then((confirmed) async {
if (confirmed == true && mounted) {
if (confirmed == true && context.mounted) {
bool success = await db.groupDao.deleteGroup(groupId: widget.groupToEdit!.id);
if (!context.mounted) return;
if (success) {