fix: Decrease app name space a bit to prevent overflowing

This commit is contained in:
Alberto Ponces 2022-09-18 05:06:51 +01:00
parent 5a3884e159
commit f10b5aebac

View File

@ -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,