feature/itemDescription #3

Merged
v4l3n71n merged 12 commits from feature/itemDescription into main 2024-07-06 07:50:21 +00:00
Showing only changes of commit 4de6603b91 - Show all commits

View File

@ -176,17 +176,24 @@ class _ItemMenuState extends State<ItemMenu> with ShowErrorDialog {
padding: const EdgeInsets.only(top: 60.0), padding: const EdgeInsets.only(top: 60.0),
child: Center( child: Center(
child: Container( child: Container(
height: 150, height: 250, child: Image.asset('images/flutter.png')),
/*decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(50.0)),*/
//child: Image.asset('asset/images/flutter-logo.png')
),
), ),
), ),
Row( 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))
])
], ],
))); )));
} }