feature/update-desc #9

Merged
v4l3n71n merged 4 commits from feature/update-desc into main 2024-09-29 12:14:27 +00:00
Showing only changes of commit 47dfcc3632 - Show all commits

View File

@ -226,7 +226,11 @@ class _ItemMenuState extends State<ItemMenu> with ShowErrorDialog {
), ),
Row(children: [ Row(children: [
Icon(Icons.explore), 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: [ Row(children: [
Icon(Icons.group), Icon(Icons.group),
@ -235,8 +239,11 @@ class _ItemMenuState extends State<ItemMenu> with ShowErrorDialog {
]), ]),
Row(children: [ Row(children: [
Icon(Icons.description), Icon(Icons.description),
Text("Description : ${eventDescription}", Flexible(
style: TextStyle(fontSize: 15.0)) child: Text("Description : ${eventDescription}",
style: TextStyle(fontSize: 15.0),
maxLines: 3,
overflow: TextOverflow.ellipsis))
]) ])
], ],
))); )));