add link and ticket backend side
This commit is contained in:
@@ -87,6 +87,8 @@ class _ItemMenuState extends State<ItemMenu> with ShowAlertDialog {
|
||||
String eventName = "";
|
||||
String eventStartDate = "";
|
||||
String eventDescription = "";
|
||||
String eventTicket = "";
|
||||
String eventLink = "";
|
||||
String place = "";
|
||||
String imgUrl = "";
|
||||
List<String> tags = [];
|
||||
@@ -157,6 +159,8 @@ class _ItemMenuState extends State<ItemMenu> with ShowAlertDialog {
|
||||
organizers = List<String>.from(events?.organizers ?? []);
|
||||
place = events?.place ?? "";
|
||||
imgUrl = events?.imgUrl ?? "";
|
||||
eventLink = events?.link ?? "";
|
||||
eventTicket = events?.ticket ?? "";
|
||||
eventDescription = events?.description ?? "";
|
||||
tags = List<String>.from(events?.tags ?? []);
|
||||
});
|
||||
@@ -286,8 +290,8 @@ class _ItemMenuState extends State<ItemMenu> with ShowAlertDialog {
|
||||
Row(
|
||||
children: [
|
||||
Flexible(
|
||||
child: Text("${eventStartDate}",
|
||||
style: TextStyle(fontSize: 15.0)))
|
||||
child:
|
||||
Text("${eventLink}", style: TextStyle(fontSize: 15.0)))
|
||||
],
|
||||
),
|
||||
Row(children: [
|
||||
@@ -300,7 +304,7 @@ class _ItemMenuState extends State<ItemMenu> with ShowAlertDialog {
|
||||
Row(
|
||||
children: [
|
||||
Flexible(
|
||||
child: Text("${eventStartDate}",
|
||||
child: Text("${eventTicket}",
|
||||
style: TextStyle(fontSize: 15.0)))
|
||||
],
|
||||
),
|
||||
|
Reference in New Issue
Block a user