mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-11 13:05:37 +02:00
fix: Decrease app name space a bit to prevent overflowing
This commit is contained in:
parent
5a3884e159
commit
f10b5aebac
1 changed files with 2 additions and 2 deletions
|
@ -74,8 +74,8 @@ class _ApplicationItemState extends State<ApplicationItem>
|
|||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
Text(
|
||||
widget.name.length > 10
|
||||
? '${widget.name.substring(0, 10)}...'
|
||||
widget.name.length > 9
|
||||
? '${widget.name.substring(0, 9)}...'
|
||||
: widget.name,
|
||||
style: const TextStyle(
|
||||
fontSize: 16,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue