diff --git a/lib/src/message_input.dart b/lib/src/message_input.dart index 3fb4d592..10225e6b 100644 --- a/lib/src/message_input.dart +++ b/lib/src/message_input.dart @@ -447,9 +447,7 @@ class MessageInputState extends State { leading: UserAvatar( user: m.user, ), - title: Text('${m.user.name}', style: TextStyle(fontWeight: FontWeight.bold),), - subtitle: Text('${m.userId}'), - trailing: Icon(Icons.alternate_email, color: StreamChatTheme.of(context).accentColor,), + title: Text('${m.user.name}'), onTap: () { _mentionedUsers.add(m.user); @@ -896,6 +894,10 @@ class MessageInputState extends State { color: Colors.white, size: 16.0, ), + constraints: BoxConstraints( + maxWidth: 24.0, + maxHeight: 24.0, + ), ), ), ),