Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

Commit

Permalink
fix(Post): Wrap text
Browse files Browse the repository at this point in the history
  • Loading branch information
moverval committed Jan 3, 2024
1 parent b1cf4ca commit 1803e87
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions lib/components/Post.dart
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,15 @@ class Post extends StatelessWidget {
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Text(
'"$description"',
textAlign: TextAlign.left,
style: const TextStyle(
height: 1.4,
fontWeight: FontWeight.w400,
Flexible(
child: Text(
description,
textAlign: TextAlign.left,
style: const TextStyle(
height: 1.4,
fontWeight: FontWeight.w400,
),
softWrap: true,
),
)
],
Expand Down

0 comments on commit 1803e87

Please sign in to comment.