Skip to content

Commit

Permalink
fix(widgets): Fix quoted message overflow in ThreadCard
Browse files Browse the repository at this point in the history
  • Loading branch information
realth000 committed Dec 16, 2023
1 parent 06944a3 commit 305b4d9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lib/widgets/thread_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,13 @@ class _CardLayout extends ConsumerWidget {
if (quotedMessage != null)
Row(
children: [
Card(
elevation: 2,
child: Padding(
padding: edgeInsetsL15T15R15B15,
child: Text(quotedMessage!),
Expanded(
child: Card(
elevation: 2,
child: Padding(
padding: edgeInsetsL15T15R15B15,
child: Text(quotedMessage!),
),
),
),
],
Expand Down

0 comments on commit 305b4d9

Please sign in to comment.