Skip to content

Commit

Permalink
Fix radar chart sample 1 overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
imaNNeo committed Oct 7, 2023
1 parent bb90889 commit a60af1c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ class _RadarChartSample1State extends State<RadarChartSample1> {
max: 360,
onChanged: (double value) => setState(() => angleValue = value),
),
],
),
Row(
children: [
Checkbox(
value: relativeAngleMode,
onChanged: (v) => setState(() => relativeAngleMode = v!),
Expand Down

0 comments on commit a60af1c

Please sign in to comment.