Fix entity name padding
This commit is contained in:
@ -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
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user