ohthatsa_old/lib/pages/MonthValuesPage.dart
2020-10-04 18:48:37 +02:00

58 lines
No EOL
1.3 KiB
Dart

import 'package:flutter/material.dart';
import '../AppDrawer.dart';
class MonthValuesPage extends StatelessWidget {
final Map<String, int> monthValues = {
"January": 0,
"February": 3,
"March": 3,
"April": 6,
"May": 1,
"June": 4,
"July": 6,
"August": 2,
"September": 5,
"October": 0,
"November": 3,
"December": 5,
};
final monthTableRowTextStyle = TextStyle(fontSize: 35);
TableRow getMonthTableRow(MapEntry<String, int> month) {
return TableRow(
children: [
TableCell(
child: Text(
month.key,
style: monthTableRowTextStyle,
textAlign: TextAlign.right
)
),
TableCell(
child: Text(
month.value.toString(),
style: monthTableRowTextStyle,
textAlign: TextAlign.center
)
)
]
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
drawer: AppDrawer(),
appBar: AppBar(
title: Text("Month Values")
),
body: Center(
child: Table(
children: monthValues.entries.map(getMonthTableRow).toList()
)
)
);
}
}