animations Flutter Interview Questions
2 questions
Advertisement
IntermediateAdvanced Flutter
What are the main ways to build animations in Flutter?
Implicit animations (the `Animated*` widgets, like `AnimatedContainer`) animate a property change automatically with minimal code; explicit animations give full control via an `AnimationController` and `Tween`, for anything beyond a simple property tween.
IntermediateFlutter Widgets
How do Hero animations work in Flutter?
A Hero widget with a matching tag on two different screens tells Flutter to automatically animate that widget flying from its position on the first screen to its position on the second during a navigation transition.
Advertisement