Plugin is discontinued. It is disabled in the Jetbrains Marketplace.
The aim of this plugin (pub package and IDE plugin) is to assist Flutter developers creating reusable UI components that are not tied to business logic.
This repository contains:
- the open source code of the publicly available
idea_widget_preview
pub package - usage documentation and required legal information for the closed-source
Widget Preview for Flutter
plugin.
Here is an example what the plugin looks like in action:
Widget.Preview.Demo.mov
(Widgets used in the demo were retrieved from here.)
- Install Flutter on your machine
- Add
flutter
tool to your path (preferred)
- Add
- Add
idea_widget_preview
pub package to your project - Install
Widget Preview for Flutter
plugin in your Jetbrains IDE
Recommended:
- Add
lib/widget.preview.dart
to your.gitignore
This is what a typical setup looks like for a widget:
import 'package:flutter/material.dart';
import 'package:idea_widget_preview/preview.dart';
// 1) Your widget
class Example extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
width: 200,
height: 200,
color: Colors.amber,
);
}
}
// 2) The corresponding preview
class ExamplePreview extends PreviewProvider {
@override
List<Preview> get previews => [
// 3) Individual declarations
Preview(
title: "Simple",
builder: (BuildContext context) {
return Example();
},
)
];
}
As you can see from the previous code, there are 3 key things to keep in mind when declaring your preview:
- Widget.
- Public class declaration that derives from
PreviewProvider
and has a no-arg constructor. - Individual declarations you want to see in your Preview.
(Advanced topic. It is worth reading it to know about this feature.)
If you prefer to keep the dependency to idea_widget_preview
minimal, or you already have a storybook configured in your project, there is alternative solution to extending or implementing the PreviewProvider
class.
You can provide your custom implementation that converts your existing class to PreviewProvider
. In the following example, StoryProvider
is your custom class.
abstract class StoryProvider {
List<Story> get stories;
}
class ConvertToPreviews implements ToPreviewProvider<StoryProvider> {
@override
PreviewProvider toPreviewProvider(StoryProvider value) {
return PreviewProvider.createAnonymous(
previews: value.stories
.map(
(story) => Preview(
title: story.name,
builder: story.builder,
),
)
.toList(),
);
}
}
With that in place, you can create your previews like this:
class MealsViewStory implements StoryProvider {
@override
final List<Story> stories = [
Story(
name: 'Widget/Breakfast',
description: 'A preview about the breakfast.',
builder: (context) =>
MealsView(
mealsListData: MealsListData.tabIconsList[0],
),
),
// ...
];
}
Very important:
You need to configure in IDEA settings (under
Widget Preview for Flutter
>Transform file
) the path to the file where your implementation ofToPreviewProvider
resides in.
- Refresh: This button reloads the current preview.
- This is the preview panel you can open in any
.dart
file. The content is context-dependent and in case of errors, or missing implementation, you will see a message instead of the preview. - Additional logs view of the running processes. If your project contains errors, the preview cannot be rendered. These 2 readonly console views provides further info about issues. (Ideally, IDEA and the Dart plugin will highlight the issues in your project anyway.)