feature/category #10

Merged
v4l3n71n merged 16 commits from feature/category into main 2024-10-21 21:14:10 +00:00
3 changed files with 4 additions and 3 deletions
Showing only changes of commit f2de4a2faa - Show all commits

View File

@ -198,7 +198,7 @@ class _ItemMenuState extends State<ItemMenu> with ShowErrorDialog {
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text("${eventName}"),
title: Text("${eventName}", overflow: TextOverflow.ellipsis),
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
leading: IconButton(

View File

@ -92,7 +92,8 @@ class _MyHomePageState extends State<ListItemOrganizers> {
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text("Organisateur : ${widget.organizer}"),
title: Text("Organisateur : ${widget.organizer}",
overflow: TextOverflow.ellipsis),
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
),

View File

@ -91,7 +91,7 @@ class _MyHomePageState extends State<ListItemTags> {
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text("Tags : ${widget.tags}"),
title: Text("Tags : ${widget.tags}", overflow: TextOverflow.ellipsis),
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
),