Skip to content

Commit

Permalink
Fix some discrepancies
Browse files Browse the repository at this point in the history
  • Loading branch information
MelbourneDeveloper committed Sep 18, 2024
1 parent ae643a8 commit 18ae2f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts_flutter/example/lib/bar_chart/bar_gallery.dart
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ List<GalleryScaffold> buildGallery() {
new GalleryScaffold(
listTileIcon: new Icon(Icons.insert_chart),
title: sparkBarChart,
subtitle: 'Spark Bar Charts',
subtitle: 'Spark Bar Chart',
childBuilder: () => m.useRandomData
? SparkBar.withRandomData()
: SparkBar.withSampleData(),
Expand All @@ -190,7 +190,7 @@ List<GalleryScaffold> buildGallery() {
new GalleryScaffold(
listTileIcon: new Icon(Icons.insert_chart),
title: patternForwardHatchChart,
subtitle: 'Pattern Forward Hatch Bar Charts',
subtitle: 'Pattern Forward Hatch Bar Chart',
childBuilder: () => m.useRandomData
? PatternForwardHatchBarChart.withRandomData()
: PatternForwardHatchBarChart.withSampleData(),
Expand All @@ -199,7 +199,7 @@ List<GalleryScaffold> buildGallery() {
listTileIcon: new Transform.rotate(
angle: 1.5708, child: new Icon(Icons.insert_chart)),
title: horizontalPatternForwardHatchChart,
subtitle: 'Horizontal Pattern Forward Hatch Bar Charts',
subtitle: 'Horizontal Pattern Forward Hatch Bar Chart',
childBuilder: () => m.useRandomData
? HorizontalPatternForwardHatchBarChart.withRandomData()
: HorizontalPatternForwardHatchBarChart.withSampleData(),
Expand Down

0 comments on commit 18ae2f3

Please sign in to comment.