From f45bcd691ec37b2bd243712eae55362c83a91fab Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 9 May 2020 12:31:38 +0200 Subject: [PATCH] Fix button color --- lib/ui/widgets/async_screen_widget.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ui/widgets/async_screen_widget.dart b/lib/ui/widgets/async_screen_widget.dart index 9c720a1..90eaa0b 100644 --- a/lib/ui/widgets/async_screen_widget.dart +++ b/lib/ui/widgets/async_screen_widget.dart @@ -61,6 +61,7 @@ class AsyncScreenWidgetState extends SafeState { if (error) return buildErrorCard(widget.errorMessage, actions: [ MaterialButton( + textColor: Colors.white, onPressed: () => refresh(), child: Text(tr("Try again").toUpperCase()), )