Make timeout warning color white
This commit is contained in:
parent
5bd1238819
commit
adaadf5d79
|
|
@ -74,7 +74,11 @@ class _DesktopSessionTimeoutState extends State<DesktopSessionTimeout> {
|
|||
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<AppState>(context);
|
||||
|
|
|
|||
Loading…
Reference in New Issue