What problem does it solve? Developing Flutter UI components without visual feedback requires running the full application, slowing iteration. This Skill adds interactive widget previews so components can be rendered and tested in isolation from the app context. ## Core Features & Use Cases - Preview Annotation Setup: Applies the @Preview annotation to top-level functions, static methods, or parameter-less constructors, with configuration for name, group, size, theme, and brightness. - Custom and Multi-Preview Classes: Creates custom Preview and MultiPreview subclasses with runtime transform() overrides to generate themed or multi-configuration previews. - Limitation Handling: Guides around web-environment constraints such as no dart:io/dart:ffi usage, package-based asset paths, and public constant callbacks. - Use Case: When building a new design-system component, annotate it with @Preview, launch the Widget Previewer via IDE or flutter widget-preview start, and iterate with hot restart until the design matches. ## Quick Start Add an interactive preview to my Flutter widget using the @Preview annotation and show me how to launch the Widget Previewer.