From 27c3447c2eaa62f70eb2703e9681b9ece8353364 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Mon, 9 Nov 2020 11:20:21 +0100 Subject: [PATCH] fix remove attachment indicator color --- lib/src/message_input.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/src/message_input.dart b/lib/src/message_input.dart index ad70f148..ff243bbe 100644 --- a/lib/src/message_input.dart +++ b/lib/src/message_input.dart @@ -1169,11 +1169,12 @@ class MessageInputState extends State { _attachments.remove(attachment); }); }, - fillColor: Colors.white.withOpacity(.5), + fillColor: Colors.black.withOpacity(.5), child: Center( child: Icon( - Icons.close, + StreamIcons.close, size: 15, + color: Colors.white, ), ), ),