Skip to content

Commit

Permalink
formatted line_chart_sample3.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
imaNNeo committed Jun 2, 2020
1 parent d512972 commit b3cee97
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions example/lib/line_chart/samples/line_chart_sample3.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ class LineChartSample3 extends StatelessWidget {
getDotPainter: (spot, percent, barData, index) {
if (index % 2 == 0) {
return FlDotCirclePainter(
radius: 8,
color: Colors.white,
strokeWidth: 5,
strokeColor: Colors.deepOrange);
radius: 8,
color: Colors.white,
strokeWidth: 5,
strokeColor: Colors.deepOrange);
} else {
return FlDotSquarePainter(
size: 16,
Expand Down Expand Up @@ -146,10 +146,10 @@ class LineChartSample3 extends StatelessWidget {
getDotPainter: (spot, percent, barData, index) {
if (index % 2 == 0) {
return FlDotCirclePainter(
radius: 6,
color: Colors.white,
strokeWidth: 3,
strokeColor: Colors.deepOrange);
radius: 6,
color: Colors.white,
strokeWidth: 3,
strokeColor: Colors.deepOrange);
} else {
return FlDotSquarePainter(
size: 12,
Expand Down

0 comments on commit b3cee97

Please sign in to comment.