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),
|
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);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue