From f10b5aebacb700c7dba4967a5a5a4b504f6afb7b Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Sun, 18 Sep 2022 05:06:51 +0100 Subject: [PATCH] fix: Decrease app name space a bit to prevent overflowing --- lib/ui/widgets/shared/application_item.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/widgets/shared/application_item.dart b/lib/ui/widgets/shared/application_item.dart index 3dc0867c..178357c2 100644 --- a/lib/ui/widgets/shared/application_item.dart +++ b/lib/ui/widgets/shared/application_item.dart @@ -74,8 +74,8 @@ class _ApplicationItemState extends State crossAxisAlignment: CrossAxisAlignment.start, children: [ 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,