Fix entity name padding

This commit is contained in:
estevez
2018-09-29 18:02:29 +03:00
parent 2fcd27d240
commit 95f7c14296

View File

@ -136,12 +136,15 @@ class Entity {
} }
Widget _buildNameWidget() { Widget _buildNameWidget() {
return Text( return Padding(
"${this.displayName}", padding: EdgeInsets.only(right: 10.0),
overflow: TextOverflow.fade, child: Text(
softWrap: false, "${this.displayName}",
style: TextStyle( overflow: TextOverflow.ellipsis,
fontSize: 16.0 softWrap: false,
style: TextStyle(
fontSize: 16.0
),
), ),
); );
} }