From adaadf5d79045d4a61d05d8b87141a3133eae4e6 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 7 Mar 2021 12:30:11 +0200 Subject: [PATCH] Make timeout warning color white --- lib/ui/app/desktop_session_timeout.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/ui/app/desktop_session_timeout.dart b/lib/ui/app/desktop_session_timeout.dart index 1ca850fe0..f66fd0677 100644 --- a/lib/ui/app/desktop_session_timeout.dart +++ b/lib/ui/app/desktop_session_timeout.dart @@ -74,7 +74,11 @@ class _DesktopSessionTimeoutState extends State { padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), child: Row( children: [ - Expanded(child: Text(localization.sessionAboutToExpire)), + Expanded( + child: Text( + localization.sessionAboutToExpire, + style: TextStyle(color: Colors.white), + )), TextButton( onPressed: () { final store = StoreProvider.of(context);