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,13 +136,16 @@ class Entity {
} }
Widget _buildNameWidget() { Widget _buildNameWidget() {
return Text( return Padding(
padding: EdgeInsets.only(right: 10.0),
child: Text(
"${this.displayName}", "${this.displayName}",
overflow: TextOverflow.fade, overflow: TextOverflow.ellipsis,
softWrap: false, softWrap: false,
style: TextStyle( style: TextStyle(
fontSize: 16.0 fontSize: 16.0
), ),
),
); );
} }