mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Long patch description truncated (#702)
fix: long patch description truncated (#702) Allow flexible height
This commit is contained in:
parent
378c947654
commit
12d25570af
1 changed files with 2 additions and 3 deletions
|
@ -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,
|
||||
|
@ -99,7 +99,6 @@ class _PatchItemState extends State<PatchItem> {
|
|||
Text(
|
||||
widget.description,
|
||||
softWrap: true,
|
||||
maxLines: 3,
|
||||
overflow: TextOverflow.visible,
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
|
@ -201,4 +200,4 @@ class _PatchItemState extends State<PatchItem> {
|
|||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue