flutterbook 0.1.9 copy "flutterbook: ^0.1.9" to clipboard
flutterbook: ^0.1.9 copied to clipboard

A storyboard tool to accelerate the development of Flutter widgets.

Flutterbook

Flutterbook #

A storyboarding tool to accelerate the development of Flutter widgets. Inspired by Storybook.js.

The package is built to support Windows and Web layouts. There is no support for mobile support at the moment. This is new and still under heavy development, expect many changes to occur with usage.

License: MIT


Go subscribe to my YouTube channel to support development.

MOONSDONTBURN Header #

Demo #

Demo Link Here

Overview ✨ #

Creating the Main

Start by creating the storyboard widget. This will wrap the Flutterbook widget so that when it is edited, it will hot reload.

class Storyboard extends StatelessWidget {
  const Storyboard({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return FlutterBook(
      categories: [
          // organizers ...
      ],
    );
  }
}
copied to clipboard

After creating the Storyboard widget, you can run it by using the main. I recommend making another file named main_storyboard.dart to maintain your storyboard.

void main() {
  runApp(const Storyboard());
}
// Or run it directly, but this will cost the hot reload.
// void main() {
//   runApp(const Flutterbook(categories:[...]));
// }
copied to clipboard

How to add Widgets

To add widgets, you simply put Organizers, aka Category, Folder, Component, and ComponentState.

The hierarchy goes

Category > Folder > Component > ComponentState

but you may also do

Category > Component > ComponentState

or

Category > Folder > Folder > Component > ComponentState

Here is a complex example of a single Category. In the example, we use the builder where we are able to access different controls.

Category(
    categoryName: 'LIBRARY',
    organizers: [
    Folder(
        folderName: 'Charts',
        organizers: [
        Component(
            componentName: 'LineGraph',
            states: [
            ComponentState.child(
                stateName: 'Default Container',
                child: Container(),
            ),
            ],
        ),
        ],
    ),
    Component(
        componentName: 'Button',
        compenentMarkdoown: """##A global button component""",
        states: [
        ComponentState(
            stateName: 'Primary',
            markdown: """Used for the main action to be performed"""
            codeSample:  r'''
Button.primary(
  child: Text('Primary Button'),
  onPressed: () {},
);
'''
            builder: (context, c) {
            return Center(
                child: SizedBox(
                width: c.number(
                    label: 'Number',
                    initial: 50,
                    min: 50,
                    max: 250,
                ),
                height: c.number(
                    label: 'height',
                    initial: 50,
                    min: 50,
                    max: 250,
                    description: 'random stuff',
                ),
                child: CupertinoButton.filled(
                    onPressed: c.boolean(
                    label: 'boolean',
                    initial: true,
                    )
                        ? () {}
                        : null,
                    child: Text(
                    c.text(label: 'Text', initial: 'Hello World'),
                    ),
                ),
                ),
            );
            },
        ),
        ],
    ),
    ],
),
copied to clipboard

That's it!

Roadmap 🚧 #

  • ❌ Mobile Support
  • ❌ 100% Code Coverage Testing
  • [X ] Documentation Support in ComponentState's
  • ❌ Better Docs
  • [X ] Device Previews
  • ❌ Shareable Handoffs
  • ❌ Optimization

Contributors 🔥 #

Your name could be here 😉

42
likes
130
points
109
downloads

Publisher

verified publishermoonsdontburn.design

Weekly Downloads

2024.09.17 - 2025.04.01

A storyboard tool to accelerate the development of Flutter widgets.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, dart_code_viewer2, device_preview, flutter, flutter_feather_icons, flutter_markdown, google_fonts, provider, recase

More

Packages that depend on flutterbook