A Flutter package for cool design and animation of Pie Chart.

Features

Screenshot 2021-11-29 120133 Screenshot 2021-11-29 120200 Screenshot 2021-11-29 120101

https://user-images.githubusercontent.com/75254562/143841160-91717ca9-95b6-4f0e-8de4-4b796ca6c62c.mp4

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,
    ),

Libraries

flutter_pie_chart