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)) + ]) ], ))); }