Correct more color
This commit is contained in:
parent
63726e87fc
commit
429b4ff5c8
|
|
@ -396,11 +396,17 @@ class _EntityListState extends State<EntityList> {
|
||||||
Text(
|
Text(
|
||||||
localization.more,
|
localization.more,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: state.headerTextColor),
|
color: state.prefState
|
||||||
|
.enableDarkMode
|
||||||
|
? Colors.white
|
||||||
|
: Colors.black),
|
||||||
),
|
),
|
||||||
SizedBox(width: 4),
|
SizedBox(width: 4),
|
||||||
Icon(Icons.arrow_drop_down,
|
Icon(Icons.arrow_drop_down,
|
||||||
color: state.headerTextColor),
|
color:
|
||||||
|
state.prefState.enableDarkMode
|
||||||
|
? Colors.white
|
||||||
|
: Colors.black),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue