add flexible
This commit is contained in:
parent
1cdae0bb33
commit
47dfcc3632
@ -226,7 +226,11 @@ class _ItemMenuState extends State<ItemMenu> with ShowErrorDialog {
|
||||
),
|
||||
Row(children: [
|
||||
Icon(Icons.explore),
|
||||
Text("Carte : ${place}", style: TextStyle(fontSize: 15.0))
|
||||
Flexible(
|
||||
child: Text("Carte : ${place}",
|
||||
style: TextStyle(fontSize: 15.0),
|
||||
maxLines: 3,
|
||||
overflow: TextOverflow.ellipsis))
|
||||
]),
|
||||
Row(children: [
|
||||
Icon(Icons.group),
|
||||
@ -235,8 +239,11 @@ class _ItemMenuState extends State<ItemMenu> with ShowErrorDialog {
|
||||
]),
|
||||
Row(children: [
|
||||
Icon(Icons.description),
|
||||
Text("Description : ${eventDescription}",
|
||||
style: TextStyle(fontSize: 15.0))
|
||||
Flexible(
|
||||
child: Text("Description : ${eventDescription}",
|
||||
style: TextStyle(fontSize: 15.0),
|
||||
maxLines: 3,
|
||||
overflow: TextOverflow.ellipsis))
|
||||
])
|
||||
],
|
||||
)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user