Skip to content

Commit

Permalink
fix: Decrease app name space a bit to prevent overflowing
Browse files Browse the repository at this point in the history
  • Loading branch information
ponces committed Sep 18, 2022
1 parent 5a3884e commit f10b5ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ui/widgets/shared/application_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f10b5ae

Please sign in to comment.