flutter-add-widget-preview
작성자: flutter
previews.dart 시스템을 사용하여 프로젝트에 대화형 위젯 미리보기를 추가합니다. 새 UI 구성 요소를 만들거나 기존 화면을 업데이트할 때 사용하여…
npx skills add https://github.com/flutter/skills --skill flutter-add-widget-previewPreviewing Flutter Widgets
Contents
Preview Guidelines
Use the Flutter Widget Previewer to render widgets in real-time, isolated from the full application context.
- Target Elements: Apply the
@Previewannotation to top-level functions, static methods within a class, or public widget constructors/factories that have no required arguments and return aWidgetorWidgetBuilder. - Imports: Always import
package:flutter/widget_previews.dartto access the preview annotations. - Custom Annotations: Extend the
Previewclass to create custom annotations that inject common properties (e.g., themes, wrappers) across multiple widgets. - Multiple Configurations: Apply multiple
@Previewannotations to a single target to generate multiple preview instances. Alternatively, extendMultiPreviewto encapsulate common multi-preview configurations. - Runtime Transformations: Override the
transform()method in customPrevieworMultiPreviewclasses to modify preview configurations dynamically at runtime (e.g., generating names based on dynamic values, which is impossible in aconstcontext).
Handling Limitations
Adhere to the following constraints when authoring previewable widgets, as the Widget Previewer runs in a web environment:
- No Native APIs: Do not use native plugins or APIs from
dart:ioordart:ffi. Widgets with transitive dependencies ondart:ioordart:ffiwill throw exceptions upon invocation. Use conditional imports to mock or bypass these in preview mode. - Asset Paths: Use package-based paths for assets loaded via
dart:uifromAssetAPIs (e.g.,packages/my_package_name/assets/my_image.pnginstead ofassets/my_image.png). - Public Callbacks: Ensure all callback arguments provided to preview annotations are public and constant to satisfy code generation requirements.
- Constraints: Apply explicit constraints using the
sizeparameter in the@Previewannotation if your widget is unconstrained, as the previewer defaults to constraining them to approximately half the viewport.
Workflows
Creating a Widget Preview
Copy and track this checklist when implementing a new widget preview:
- Import
package:flutter/widget_previews.dart. - Identify a valid target (top-level function, static method, or parameter-less public constructor).
- Apply the
@Previewannotation to the target. - Configure preview parameters (
name,group,size,theme,brightness, etc.) as needed. - If applying the same configuration to multiple widgets, extract the configuration into a custom class extending
Preview.
Interacting with Previews
Follow the appropriate conditional workflow to launch and interact with the Widget Previewer:
If using a supported IDE (Android Studio, IntelliJ, VS Code with Flutter 3.38+):
- Launch the IDE. The Widget Previewer starts automatically.
- Open the "Flutter Widget Preview" tab in the sidebar.
- Toggle "Filter previews by selected file" at the bottom left if you want to view previews outside the currently active file.
If using the Command Line:
- Navigate to the Flutter project's root directory.
- Run
flutter widget-preview start. - View the automatically opened Chrome environment.
Feedback Loop: Preview Iteration
- Modify the widget code or preview configuration.
- Observe the automatic update in the Widget Previewer.
- If global state (e.g., static initializers) was modified: Click the global hot restart button at the bottom right.
- If only the local widget state needs resetting: Click the individual hot restart button on the specific preview card.
- Review errors in the IDE/CLI console -> fix -> repeat.
Examples
Basic Preview
import 'package:flutter/widget_previews.dart';
import 'package:flutter/material.dart';
@Preview(name: 'My Sample Text', group: 'Typography')
Widget mySampleText() {
return const Text('Hello, World!');
}
Custom Preview with Runtime Transformation
import 'package:flutter/widget_previews.dart';
import 'package:flutter/material.dart';
final class TransformativePreview extends Preview {
const TransformativePreview({
super.name,
super.group,
});
PreviewThemeData _themeBuilder() {
return PreviewThemeData(
materialLight: ThemeData.light(),
materialDark: ThemeData.dark(),
);
}
@override
Preview transform() {
final originalPreview = super.transform();
final builder = originalPreview.toBuilder();
builder
..name = 'Transformed - ${originalPreview.name}'
..theme = _themeBuilder;
return builder.toPreview();
}
}
@TransformativePreview(name: 'Custom Themed Button')
Widget myButton() => const ElevatedButton(onPressed: null, child: Text('Click'));
MultiPreview Implementation
import 'package:flutter/widget_previews.dart';
import 'package:flutter/material.dart';
/// Creates light and dark mode previews automatically.
final class MultiBrightnessPreview extends MultiPreview {
const MultiBrightnessPreview({required this.name});
final String name;
@override
List<Preview> get previews => const [
Preview(brightness: Brightness.light),
Preview(brightness: Brightness.dark),
];
@override
List<Preview> transform() {
final previews = super.transform();
return previews.map((preview) {
final builder = preview.toBuilder()
..group = 'Brightness'
..name = '$name - ${preview.brightness!.name}';
return builder.toPreview();
}).toList();
}
}
@MultiBrightnessPreview(name: 'Primary Card')
Widget cardPreview() => const Card(child: Padding(padding: EdgeInsets.all(8.0), child: Text('Content')));
flutter의 다른 스킬
dart-modern-features
flutter
현대화를 위한 후보를 찾으려면:
official
dart-log-failure-parser
flutter
Dart 및 Flutter 테스트 로그에서 실패를 파싱합니다.
official
find-release
flutter
주어진 커밋이 포함된 가장 낮은 Dart 및 Flutter 릴리스를 찾는 스킬입니다. 사용자가 Flutter나 Dart에서 커밋이 언제 포함되었는지 물을 때 이 스킬을 사용하세요…
official
flutter-pr-checks-finder
flutter
Flutter PR에서 실패한 검사를 찾고 해당 LUCI 로그 URL을 찾습니다.
official
rebuilding-flutter-tool
flutter
Flutter 도구와 CLI를 재빌드합니다. 사용자가 Flutter 도구나 CLI를 컴파일, 업데이트, 재생성 또는 재빌드하도록 요청할 때 사용하세요.
official
upgrade-browser
flutter
Flutter Web Engine 및/또는 Framework 테스트에서 브라우저 버전(Chrome 또는 Firefox)을 업그레이드합니다. Chrome 또는 Firefox를 최신 버전으로 롤 또는 업그레이드하라는 요청을 받을 때 사용하세요.
official
create-catalog-item
flutter
사용자가 JSON 스키마 정의를 기반으로 새 CatalogItem, 데이터 클래스 및/또는 위젯 클래스를 생성하도록 요청할 때 이 스킬을 사용하세요.
official
genui-helper
flutter
이 스킬은 genui 저장소에 특화된 워크플로우와 모범 사례를 제공합니다.
official