pie_chart_sz 1.0.0
pie_chart_sz: ^1.0.0 copied to clipboard
A Flutter package for creating beautiful Spaced Pie Charts
spaced Pie Chart
#
This Flutter package provides a donut Chart Widget
Installation #
In the dependencies: section of your pubspec.yaml, add the following line:
dependencies:
pie_chart_sz: <latest version>
Usage #
Import this class
import 'package:pie_chart/pie_chart.dart';
this a simple example code to use this package
List<Color>? colors = [
Colors.purple,
Colors.blue,
Colors.orange,
Colors.red,
Colors.teal,
];
List<double>? values = [
50,
20,
20,
5,
5,
];
PieChartSz(
colors: colors,
values: values,
);