What problem does it solve? Flutter apps can suffer from frame drops, scroll jank, and animation stutter that are hard to locate without a structured profiling workflow. This Skill provides a repeatable process for finding and fixing rendering bottlenecks in the OrignaGTA Flutter app, from quick overlay checks to automated benchmark tests. ## Core Features & Use Cases - Performance Overlay & DevTools Workflow: Toggle the performance overlay in profile mode and use DevTools Frame Analysis to pinpoint whether jank comes from the UI thread (Dart rebuilds) or the raster thread (GPU rendering). - Automated Benchmarking: Write integration tests with traceAction and a flutter drive driver that output timeline summaries with average/worst frame times and missed-frame percentages. - OrignaGTA-Specific Hotspot Guide: A lookup table of known bottlenecks (product card rebuilds, mascot painters with shouldRepaint: true, heavy provider watches) with concrete fixes like const constructors, RepaintBoundary, and select(). - Use Case: A user reports the home feed stutters while scrolling. Run the app in profile mode, press 'P' to check the overlay, trace the scroll in DevTools, then apply RepaintBoundary around product cards and verify with a perf_home_test.dart benchmark. ## Quick Start Ask the AI to diagnose scroll jank on the home feed by running the app in profile mode and analyzing the performance overlay and DevTools timeline.