mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-30 22:14:25 +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,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Text(
|
Text(
|
||||||
widget.name.length > 10
|
widget.name.length > 9
|
||||||
? '${widget.name.substring(0, 10)}...'
|
? '${widget.name.substring(0, 9)}...'
|
||||||
: widget.name,
|
: widget.name,
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user