From 4de6603b916b867159a08f6840f57260849919ba Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Fri, 5 Jul 2024 23:54:39 +0200 Subject: [PATCH] organisateurs description --- covas_mobile/lib/pages/ItemMenu.dart | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/covas_mobile/lib/pages/ItemMenu.dart b/covas_mobile/lib/pages/ItemMenu.dart index 2a9e1ef..5c85594 100644 --- a/covas_mobile/lib/pages/ItemMenu.dart +++ b/covas_mobile/lib/pages/ItemMenu.dart @@ -176,17 +176,24 @@ class _ItemMenuState extends State with ShowErrorDialog { padding: const EdgeInsets.only(top: 60.0), child: Center( child: Container( - height: 150, - /*decoration: BoxDecoration( - color: Colors.red, - borderRadius: BorderRadius.circular(50.0)),*/ - //child: Image.asset('asset/images/flutter-logo.png') - ), + height: 250, child: Image.asset('images/flutter.png')), ), ), Row( - children: [Icon(Icons.event), Text("${eventStartDate}")], - ) + children: [ + Icon(Icons.event), + Text("Date : ${eventStartDate}", + style: TextStyle(fontSize: 15.0)) + ], + ), + Row(children: [ + Icon(Icons.group), + Text("Organisateurs : ", style: TextStyle(fontSize: 15.0)) + ]), + Row(children: [ + Icon(Icons.description), + Text("Description : ", style: TextStyle(fontSize: 15.0)) + ]) ], ))); }