Flutter Guideline: Performance — Use RepaintBoundary. Description: Isolate repaints. Do: RepaintBoundary for animations. Don't: Full screen repaints. Good Example: RepaintBoundary(child: AnimatedWidget()). Bad Example: Animation without boundary. Severity: Medium. Docs: https://api.flutter.dev/flutter/widgets/RepaintBoundary-class.html.