A Flutter package for cool design and animation of Pie Chart.
Features
Usage
TODO: Include short and useful examples for package users. Add longer examples
to /example
folder.
Pie class exapmle:
final List<Pie> pies = [
Pie(color: const Color(0xFFFF6262), proportion: 8),
Pie(color: const Color(0xFFFF9494), proportion: 3),
Pie(color: const Color(0xFFFFDCDC), proportion: 8),
];
Flutter pie widget example. The selected pie must be in the range of the pies list.
FlutterPieChart(
pies: pies,
selected: 2,
),