1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00

Fix icon color

This commit is contained in:
Pierre HUBERT 2021-03-13 09:10:55 +01:00
parent 1e0e2fca52
commit 7ccc7a492e

View File

@ -514,7 +514,7 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
), ),
child: Icon( child: Icon(
Icons.add, Icons.add,
color: darkTheme() ? Colors.black : Colors.white, color: Colors.white,
), ),
), ),
), ),
@ -590,7 +590,7 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
), ),
child: Icon( child: Icon(
Icons.send, Icons.send,
color: darkTheme() ? Colors.black : Colors.white, color: Colors.white,
), ),
), ),
), ),