diff --git a/README.md b/README.md index 6693029..01a03b2 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,8 @@ import 'package:flutter_circular_chart/flutter_circular_chart.dart'; Create chart data entry objects: ``` +final GlobalKey _chartKey; + List data = [ new CircularStackEntry( [ @@ -53,7 +55,6 @@ List data = [ ), ]; ``` - Create an `AnimatedCircularChart`: ``` @@ -61,7 +62,7 @@ Create an `AnimatedCircularChart`: Widget build(BuildContext context) { return new AnimatedCircularChart( key: _chartKey, - size: const Size(300, 300), + size: const Size(300.0, 300.0), initialChartData: data, chartType: CircularChartType.Pie, );