Skip to content

Commit

Permalink
fix: fixing padding and text overflow on ds reply container
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulRodrigo06 committed Oct 23, 2023
1 parent 786a9fd commit 5fa1696
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/src/widgets/chat/ds_reply_container.widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down Expand Up @@ -112,6 +110,7 @@ Widget _replyWidget(
return DSBodyText(
message?.content is String ? message?.content : '**********',
color: _color(align, style),
overflow: TextOverflow.visible,
);
default:
return Row(
Expand Down

0 comments on commit 5fa1696

Please sign in to comment.