From 7e8e49c2dd2bc17e838109753d0a1a5b3c44bcb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Sun, 10 Mar 2024 17:32:28 +0100 Subject: [PATCH] Better button labels on holiday warning --- lib/view/pages/more/holidays/holidays.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/view/pages/more/holidays/holidays.dart b/lib/view/pages/more/holidays/holidays.dart index 2c4fb4e..3bbe91d 100644 --- a/lib/view/pages/more/holidays/holidays.dart +++ b/lib/view/pages/more/holidays/holidays.dart @@ -67,8 +67,8 @@ class _HolidaysState extends State { ], ), actions: [ - TextButton(child: const Text("ferien-api.de öffnen"), onPressed: () => ConfirmDialog.openBrowser(context, "https://ferien-api.de/")), - TextButton(child: const Text("Schließen"), onPressed: () => Navigator.of(context).pop()), + TextButton(child: const Text("ferien-api.de besuchen"), onPressed: () => ConfirmDialog.openBrowser(context, "https://ferien-api.de/")), + TextButton(child: const Text("Okay"), onPressed: () => Navigator.of(context).pop()), ], ); });