Make timeout warning color white

This commit is contained in:
Hillel Coren 2021-03-07 12:30:11 +02:00
parent 5bd1238819
commit adaadf5d79
1 changed files with 5 additions and 1 deletions

View File

@ -74,7 +74,11 @@ class _DesktopSessionTimeoutState extends State<DesktopSessionTimeout> {
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: Row( child: Row(
children: [ children: [
Expanded(child: Text(localization.sessionAboutToExpire)), Expanded(
child: Text(
localization.sessionAboutToExpire,
style: TextStyle(color: Colors.white),
)),
TextButton( TextButton(
onPressed: () { onPressed: () {
final store = StoreProvider.of<AppState>(context); final store = StoreProvider.of<AppState>(context);