Added rrule generator for custom events
This commit is contained in:
@ -66,9 +66,13 @@ class _TimetableState extends State<Timetable> {
|
||||
}
|
||||
),
|
||||
IconButton(
|
||||
icon: const Icon(Icons.add_card_outlined),
|
||||
icon: const Icon(Icons.add_outlined),
|
||||
onPressed: () {
|
||||
showDialog(context: context, builder: (context) => const AddCustomTimetableEventDialog());
|
||||
showDialog(
|
||||
context: context,
|
||||
builder: (context) => const AddCustomTimetableEventDialog(),
|
||||
barrierDismissible: false,
|
||||
);
|
||||
},
|
||||
),
|
||||
],
|
||||
|
Reference in New Issue
Block a user