diff options
Diffstat (limited to 'lib/pages/agenda_page.dart')
| -rw-r--r-- | lib/pages/agenda_page.dart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pages/agenda_page.dart b/lib/pages/agenda_page.dart index 174f71d..abfefec 100644 --- a/lib/pages/agenda_page.dart +++ b/lib/pages/agenda_page.dart @@ -89,13 +89,13 @@ class _AgendaPageState extends State<AgendaPage> { currentSelectedShiftIndex = 1; // set up the buttons - Widget cancelButton = FlatButton( + Widget cancelButton = TextButton( child: Text("Terug"), onPressed: () { Navigator.pop(context); }, ); - Widget continueButton = FlatButton( + Widget continueButton = TextButton( child: Text("Ok"), onPressed: () async { await addShiftsFromDialog(); |
