Skip to content

Commit

Permalink
fix: Long patch description truncated (#702)
Browse files Browse the repository at this point in the history
fix: long patch description truncated (#702)

Allow flexible height
  • Loading branch information
alexyuen authored and validcube committed Feb 14, 2023
1 parent 378c947 commit 12d2557
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/ui/widgets/patchesSelectorView/patch_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class _PatchItemState extends State<PatchItem> {
crossAxisAlignment: CrossAxisAlignment.end,
children: <Widget>[
Expanded(
child: Text(
child: Text(
widget.simpleName,
maxLines: 2,
overflow: TextOverflow.visible,
Expand All @@ -99,7 +99,6 @@ class _PatchItemState extends State<PatchItem> {
Text(
widget.description,
softWrap: true,
maxLines: 3,
overflow: TextOverflow.visible,
style: TextStyle(
fontSize: 14,
Expand Down Expand Up @@ -201,4 +200,4 @@ class _PatchItemState extends State<PatchItem> {
),
);
}
}
}

0 comments on commit 12d2557

Please sign in to comment.