You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the pie chart in my flutter-tizen app. After some time (half an hour or so) the pie chart starts flickering randomly. And it gets more extreme as more time passes. I attached a GIF of the flickering in a relative low state. Is that a known issue of the pie chart? Or is that somehow a wrong implementation on my side?
The text was updated successfully, but these errors were encountered:
With the RepaintBoundary widget, re-rendering only occurs when the widget tree in that area changes, so you don't have to redraw the entire screen, reducing flicker.
Set the animationDuration to 0
animationDuration: Duration(milliseconds: 0),
Simply wrap a PieChart widget with a RepaintBoundary
I am using the pie chart in my flutter-tizen app. After some time (half an hour or so) the pie chart starts flickering randomly. And it gets more extreme as more time passes. I attached a GIF of the flickering in a relative low state. Is that a known issue of the pie chart? Or is that somehow a wrong implementation on my side?
The text was updated successfully, but these errors were encountered: