Commit 0bc969d
Changed files (2)
lib
screens
lib/screens/home.dart
@@ -22,7 +22,6 @@ class AppHome extends StatelessWidget {
@override
Widget build(BuildContext context) {
final localizations = AppLocalizations.of(context)!;
- //
// direct use of settings possible as no listening is required
if (_appStart && Provider.of<Settings>(context, listen: false).startWithAddMeasurementPage) {
SchedulerBinding.instance.addPostFrameCallback((_) {
lib/screens/statistics.dart
@@ -161,7 +161,7 @@ class StatisticsPage extends StatelessWidget {
class Statistic extends StatelessWidget {
final Widget caption;
final Widget child;
- /// Reduce the padding at the sites, which allows putting it in rows.
+ /// Reduces the padding at the sites to allow packing [Statistic] widgets tighter together.
///
/// TODO: should not depend on property and padding should be added outside of Statistic
final bool smallEdges;