From 1c933ff385f25302cbf4865ebf4bc62ac6db268e Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Fri, 16 Oct 2020 16:20:18 +0530 Subject: [PATCH] feat: wip message input --- lib/src/message_input.dart | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/src/message_input.dart b/lib/src/message_input.dart index af0413f8..10225e6b 100644 --- a/lib/src/message_input.dart +++ b/lib/src/message_input.dart @@ -282,7 +282,9 @@ class MessageInputState extends State { decoration: InputDecoration( hintText: 'Write a message', prefixText: ' ', - border: OutlineInputBorder(), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(32), + ), ), textCapitalization: TextCapitalization.sentences, ), @@ -860,7 +862,7 @@ class MessageInputState extends State { icon: Icon( Icons.arrow_forward, color: Colors.white, - size: 18.0, + size: 16.0, ), ), ), @@ -890,7 +892,11 @@ class MessageInputState extends State { icon: Icon( Icons.arrow_upward, color: Colors.white, - size: 18.0, + size: 16.0, + ), + constraints: BoxConstraints( + maxWidth: 24.0, + maxHeight: 24.0, ), ), ),