From 027ff3cff78054ab16df52cf6df67ac24ebf647b Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Mon, 26 Oct 2020 15:02:30 +0530 Subject: [PATCH] fix: edit ui --- lib/src/message_actions_modal.dart | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/src/message_actions_modal.dart b/lib/src/message_actions_modal.dart index 569ae22e..e39e7eed 100644 --- a/lib/src/message_actions_modal.dart +++ b/lib/src/message_actions_modal.dart @@ -189,6 +189,15 @@ class MessageActionsModal extends StatelessWidget { child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ + IconButton( + icon: Icon( + StreamIcons.form_edit, + size: 18, + color: + StreamChatTheme.of(context).primaryIconTheme.color, + ), + onPressed: () {}, + ), Text( 'Edit message', style: Theme.of(context).textTheme.headline6, @@ -196,7 +205,7 @@ class MessageActionsModal extends StatelessWidget { IconButton( icon: Icon( Icons.cancel_outlined, - size: 15, + size: 18, color: StreamChatTheme.of(context).primaryIconTheme.color, ),