implemented dynamic module settings and configurable bottom bar, added all-day event support to timetable, and overhauled marianum dates UI with month grouping and search
This commit is contained in:
@@ -14,8 +14,9 @@ Completer<void> showDeleteCustomEventDialog(BuildContext context, CustomTimetabl
|
||||
title: 'Termin löschen',
|
||||
content: 'Der ${event.rrule.isEmpty ? "Termin" : "Serientermin"} wird unwiederruflich gelöscht.',
|
||||
confirmButton: 'Löschen',
|
||||
onConfirm: () {
|
||||
bloc.removeCustomEvent(event.id).then(completer.complete).onError(completer.completeError);
|
||||
onConfirmAsync: () async {
|
||||
await bloc.removeCustomEvent(event.id);
|
||||
completer.complete();
|
||||
},
|
||||
).asDialog(context);
|
||||
return completer;
|
||||
|
||||
Reference in New Issue
Block a user