Intermediate
Flutter
Q52 / 100
What is a Hero animation in Flutter?
Correct! Well done.
Incorrect.
The correct answer is B) A shared element transition where a widget visually flies between two screens with matching tag values
B
Correct Answer
A shared element transition where a widget visually flies between two screens with matching tag values
Explanation
Hero animations create shared element transitions between routes. Wrap a widget in Hero(tag: 'myTag') on both screens. Flutter smoothly animates it between the two routes when navigating. Tags must match exactly on both screens.
Progress
52/100