shas6395----- #56

Merged
shas6395 merged 7 commits from shas6395----- into master 2022-05-30 18:28:11 +02:00
Showing only changes of commit 739bb5fc6e - Show all commits

View File

@ -191,14 +191,19 @@ class _AboutTheSpotTableState extends State<AboutTheSpotTable> {
label: Text('About the spot', label: Text('About the spot',
style: GoogleFonts.roboto( style: GoogleFonts.roboto(
textStyle: const TextStyle( textStyle: const TextStyle(
fontSize: 18, fontSize: 14,
fontWeight: FontWeight.bold,
)))), )))),
const DataColumn(label: Text('', style: TextStyle())), const DataColumn(label: Text('', style: TextStyle())),
], ],
rows: [ rows: [
const DataRow(cells: [ DataRow(cells: [
DataCell(Text('Type of venue')), DataCell(Text('Open?')),
DataCell(Text('Restaurant')), DataCell(Text(widget.venueInfo.getOpenStatus())),
]),
DataRow(cells: [
DataCell(Text('Popularity')),
DataCell(Text(widget.venueInfo.getPopularity())),
]), ]),
DataRow(cells: [ DataRow(cells: [
const DataCell(Text('Pricing')), const DataCell(Text('Pricing')),
@ -211,9 +216,9 @@ class _AboutTheSpotTableState extends State<AboutTheSpotTable> {
widget.venueInfo.getTotalRatings().toString() + widget.venueInfo.getTotalRatings().toString() +
' ratings)')), ' ratings)')),
]), ]),
const DataRow(cells: [ DataRow(cells: [
DataCell(Text('Current activity')), DataCell(Text('Popular hours')),
DataCell(Text('Moderate')), DataCell(Text(widget.venueInfo.getPopularHoursToday())),
]), ]),
DataRow(cells: [ DataRow(cells: [
const DataCell(Text('Opening hours')), const DataCell(Text('Opening hours')),