mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix: Decrease app name space a bit to prevent overflowing
This commit is contained in:
parent
5a3884e159
commit
f10b5aebac
@ -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…
Reference in New Issue
Block a user