Skip to content

Commit

Permalink
Fix analysis errors
Browse files Browse the repository at this point in the history
  • Loading branch information
yaramt committed Aug 5, 2024
1 parent 13a001b commit 4df9a5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ class DescriptiveStatisticsWidget extends StatelessWidget {
),
],
),
if (true)
Padding(
padding: const EdgeInsets.only(top: 8.0),
child: Column(
Expand Down
4 changes: 2 additions & 2 deletions app/lib/screens/study/report/sections/results_gauge.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class GaugesWidget extends StatelessWidget {
Colors.yellow[500]!,
Colors.green[300]!,
Colors.green[500]!,
Colors.green[700]!
Colors.green[700]!,
];

// Create gauge ranges based on steps and the color list
Expand Down Expand Up @@ -105,7 +105,7 @@ class GaugesWidget extends StatelessWidget {
style: const TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: Colors.blue),
color: Colors.blue,),
),
TextSpan(
text: '/$max',
Expand Down

0 comments on commit 4df9a5e

Please sign in to comment.