Correct more color

This commit is contained in:
Hillel Coren 2021-08-04 22:13:39 +03:00
parent 63726e87fc
commit 429b4ff5c8
1 changed files with 8 additions and 2 deletions

View File

@ -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),
], ],
), ),
), ),