diff --git a/lib/src/widgets/chat/ds_reply_container.widget.dart b/lib/src/widgets/chat/ds_reply_container.widget.dart index 7d2b4cdc..8dbc1d9f 100644 --- a/lib/src/widgets/chat/ds_reply_container.widget.dart +++ b/lib/src/widgets/chat/ds_reply_container.widget.dart @@ -25,10 +25,8 @@ class DSReplyContainer extends StatelessWidget { @override Widget build(BuildContext context) { return Padding( - padding: const EdgeInsets.only( - top: 8.0, - left: 8.0, - right: 8.0, + padding: const EdgeInsets.all( + 8.0, ), child: Column( children: [ @@ -112,6 +110,7 @@ Widget _replyWidget( return DSBodyText( message?.content is String ? message?.content : '**********', color: _color(align, style), + overflow: TextOverflow.visible, ); default: return Row(