fix: Replace send with check for edit

This commit is contained in:
Deven Joshi
2020-10-27 15:30:37 +05:30
parent e181a7ba58
commit 5b9c3ca5b7
+1 -1
View File
@@ -1029,7 +1029,7 @@ class MessageInputState extends State<MessageInput> {
child: Transform.rotate( child: Transform.rotate(
angle: widget.editMessage == null ? -pi / 2 : 0, angle: widget.editMessage == null ? -pi / 2 : 0,
child: Icon( child: Icon(
widget.editMessage == null ? StreamIcons.send_message : StreamIcons.check, widget.editMessage == null ? StreamIcons.send_message : StreamIcons.check_send,
color: StreamChatTheme.of(context).accentColor, color: StreamChatTheme.of(context).accentColor,
), ),
), ),