skip to Main Content

Flutter: pie_chart plugin animation scrolling problem

I have this Pie Chart created by Flutter pie_chart plugin. return SizedBox( height: 150.0, child: Stack( children: [ PieChart( baseChartColor: AmbarColors.greyNoEvents, totalValue: hoursSpent, dataMap: dataMap, // degreeOptions: const DegreeOptions(totalDegrees: 360, initialAngle: 0), animationDuration: Duration(milliseconds: 2000), chartLegendSpacing: 22, chartRadius: MediaQuery.of(context).size.width /…

VIEW QUESTION
Back To Top
Search