add Link
This commit is contained in:
@@ -130,5 +130,9 @@
|
||||
"unknown_error": "Unbekannter Fehler",
|
||||
"app_error": "Anwendungsfehler",
|
||||
"at": "um",
|
||||
"to_date": "bis"
|
||||
"to_date": "bis",
|
||||
"item_link": "Link : ",
|
||||
"item_ticket": "Abendkarte : "
|
||||
|
||||
|
||||
}
|
||||
|
@@ -132,5 +132,7 @@
|
||||
"unknown_error": "Unknown error",
|
||||
"app_error": "Application error",
|
||||
"at": "at",
|
||||
"to_date": "to"
|
||||
"to_date": "to",
|
||||
"item_link": "Link : ",
|
||||
"item_ticket": "Ticket : "
|
||||
}
|
@@ -132,6 +132,9 @@
|
||||
"unknown_error": "Erreur inconnue",
|
||||
"app_error": "Erreur d'application",
|
||||
"at": "à",
|
||||
"to_date": "jusqu'à"
|
||||
"to_date": "jusqu'à",
|
||||
"item_link": "Lien : ",
|
||||
"item_ticket": "Billet : "
|
||||
|
||||
|
||||
}
|
@@ -276,6 +276,34 @@ class _ItemMenuState extends State<ItemMenu> with ShowAlertDialog {
|
||||
maxLines: 3,
|
||||
overflow: TextOverflow.ellipsis)))
|
||||
]),
|
||||
Row(children: [
|
||||
Icon(Icons.event),
|
||||
Text(
|
||||
AppLocalizations.of(context)?.item_link ?? "Link : ",
|
||||
style: TextStyle(fontSize: 15.0, fontWeight: FontWeight.bold),
|
||||
)
|
||||
]),
|
||||
Row(
|
||||
children: [
|
||||
Flexible(
|
||||
child: Text("${eventStartDate}",
|
||||
style: TextStyle(fontSize: 15.0)))
|
||||
],
|
||||
),
|
||||
Row(children: [
|
||||
Icon(Icons.event),
|
||||
Text(
|
||||
AppLocalizations.of(context)?.item_ticket ?? "Ticket : ",
|
||||
style: TextStyle(fontSize: 15.0, fontWeight: FontWeight.bold),
|
||||
)
|
||||
]),
|
||||
Row(
|
||||
children: [
|
||||
Flexible(
|
||||
child: Text("${eventStartDate}",
|
||||
style: TextStyle(fontSize: 15.0)))
|
||||
],
|
||||
),
|
||||
Row(children: [
|
||||
Icon(Icons.group),
|
||||
Text(
|
||||
|
Reference in New Issue
Block a user