diff --git a/lib/main.dart b/lib/main.dart index 3f304b4..5612f7c 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -34,10 +34,18 @@ class MonthValuesPage extends StatelessWidget { return TableRow( children: [ TableCell( - child: Text(month.key, style: monthTableRowTextStyle, textAlign: TextAlign.right) + child: Text( + month.key, + style: monthTableRowTextStyle, + textAlign: TextAlign.right + ) ), TableCell( - child: Center(child: Text(month.value.toString(), style: monthTableRowTextStyle)) + child: Text( + month.value.toString(), + style: monthTableRowTextStyle, + textAlign: TextAlign.center + ) ) ] );