Merge branch 'master' into feature/notifications

# Conflicts:
#	CHANGELOG.md
#	README.md
#	pubspec.yaml
This commit is contained in:
Salvatore Giordano
2020-04-16 09:36:49 +02:00
2 changed files with 68 additions and 62 deletions
+52 -62
View File
@@ -280,37 +280,33 @@ class _MessageInputState extends State<MessageInput> {
], ],
color: StreamChatTheme.of(context).primaryColor, color: StreamChatTheme.of(context).primaryColor,
), ),
child: Flex( child: ListView(
mainAxisSize: MainAxisSize.min, padding: const EdgeInsets.all(0),
direction: Axis.vertical, shrinkWrap: true,
children: <Widget>[ children: commands
ListView( .map(
padding: const EdgeInsets.all(0), (c) => ListTile(
shrinkWrap: true, title: Text.rich(
children: commands TextSpan(
.map((c) => ListTile( text: '${c.name}',
title: Text.rich( style: TextStyle(fontWeight: FontWeight.bold),
TextSpan( children: [
text: '${c.name}', TextSpan(
style: TextStyle(fontWeight: FontWeight.bold), text: ' ${c.args}',
children: [ style: TextStyle(
TextSpan( fontWeight: FontWeight.w300,
text: ' ${c.args}',
style: TextStyle(
fontWeight: FontWeight.w300,
),
),
],
), ),
), ),
subtitle: Text(c.description), ],
onTap: () { ),
_setCommand(c); ),
}, subtitle: Text(c.description),
)) onTap: () {
.toList(), _setCommand(c);
), },
], ),
)
.toList(),
), ),
), ),
), ),
@@ -351,41 +347,35 @@ class _MessageInputState extends State<MessageInput> {
], ],
color: StreamChatTheme.of(context).primaryColor, color: StreamChatTheme.of(context).primaryColor,
), ),
child: Flex( child: ListView(
mainAxisSize: MainAxisSize.min, padding: const EdgeInsets.all(0),
direction: Axis.vertical, shrinkWrap: true,
children: <Widget>[ children: members
ListView( .map((m) => ListTile(
padding: const EdgeInsets.all(0), leading: UserAvatar(
shrinkWrap: true, user: m.user,
children: members ),
.map((m) => ListTile( title: Text('${m.user.name}'),
leading: UserAvatar( onTap: () {
user: m.user, _mentionedUsers.add(m.user);
splits[splits.length - 1] = m.user.name;
final rejoin = splits.join('@');
_textController.value = TextEditingValue(
text: rejoin +
_textController.text
.substring(_textController.selection.start),
selection: TextSelection.collapsed(
offset: rejoin.length,
), ),
title: Text('${m.user.name}'), );
onTap: () {
_mentionedUsers.add(m.user);
splits[splits.length - 1] = m.user.name; _mentionsOverlay?.remove();
final rejoin = splits.join('@'); _mentionsOverlay = null;
},
_textController.value = TextEditingValue( ))
text: rejoin + .toList(),
_textController.text.substring(
_textController.selection.start),
selection: TextSelection.collapsed(
offset: rejoin.length,
),
);
_mentionsOverlay?.remove();
_mentionsOverlay = null;
},
))
.toList(),
),
],
), ),
), ),
), ),
+16
View File
@@ -1023,6 +1023,22 @@ class _MessageWidgetState extends State<MessageWidget>
); );
} }
Widget _buildErrorImage(Attachment attachment) {
return Center(
child: Container(
width: 200,
height: 140,
color: Color(0xffd0021B).withOpacity(.1),
child: Center(
child: Icon(
Icons.error_outline,
color: Colors.white,
),
),
),
);
}
Widget _buildVideo( Widget _buildVideo(
Attachment attachment, Attachment attachment,
) { ) {