Skip to content
Snippets Groups Projects
Commit 5d8c7d7f authored by Maximilian Betz's avatar Maximilian Betz
Browse files

add time and date also in viewevents widget

parent c1236807
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,18 @@ class ViewEvents extends StatelessWidget {
style: TextStyle(fontStyle: FontStyle.italic),
),
),
DataColumn(
label: Text(
'StartDate',
style: TextStyle(fontStyle: FontStyle.italic),
),
),
DataColumn(
label: Text(
'EndDate',
style: TextStyle(fontStyle: FontStyle.italic),
),
),
DataColumn(
label: Text(
'Latitude',
......@@ -99,6 +111,8 @@ class ViewEvents extends StatelessWidget {
},
),
),
DataCell(Text(event.startDate)),
DataCell(Text(event.endDate)),
DataCell(
TextFormField(
readOnly: true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment