handle_animations.md
November 20, 2024 ยท View on GitHub
Animations
| Sample1 | Sample2 | Sample3 |
|---|---|---|
![]() | ![]() | ![]() |
How?
We handle all animations Implicitly, This is power of the ImplicitlyAnimatedWidget, just like AnimatedContainer. It means you don't need to do anything, just change any value and the animation is handled under the hood, if you are curious about it, check the source code, reading the source code is the best way to learn things.
Properties
You can change the Duration and Curve of animation using duration and curve properties respectively.
LineChart(
duration: Duration(milliseconds: 150),
curve: Curves.linear,
LineChartData(
isShowingMainData ? sampleData1() : sampleData2(),
),
)
How to disable
If you want to disable the animations, you can set Duration.zero as duration.
LineChart(
duration: Duration.zero,
LineChartData(
// Your chart data here
),
)


