Flutter Guideline: Animation — Use Hero for transitions. Description: Shared element transitions. Do: Hero for navigation animations. Don't: Manual shared element. Good Example: Hero(tag: 'image' child: Image()). Bad Example: Custom shared element animation. Severity: Low. Docs: https://api.flutter.dev/flutter/widgets/Hero-class.html.