diff options
Diffstat (limited to 'lib/pages/logbook_page.dart')
| -rw-r--r-- | lib/pages/logbook_page.dart | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/pages/logbook_page.dart b/lib/pages/logbook_page.dart index 0849cda..a9ef211 100644 --- a/lib/pages/logbook_page.dart +++ b/lib/pages/logbook_page.dart @@ -106,14 +106,9 @@ class _LogbookPageState extends State<LogbookPage> { Text('Gewerkt: ' + month.totalWorkedTime.inHours.toString() + ' uur'), - Text('Verdiend: ' + + Text('Verdiend: €' + month.expectedSalary.toStringAsFixed(2) + - (month.shifts.isNotEmpty - ? ' (' + - (month.shifts[0].getMinutePayRate() * 60) - .toStringAsFixed(2) + - '/uur)' - : '')), + ' (schatting)'), Padding(padding: EdgeInsets.only(left: 5, bottom: 5, right: 5)), ], ), |
