ookami-kb / storybook_flutter

A storybook for Flutter widgets.
https://pub.dev/packages/storybook_flutter
MIT License
293 stars 66 forks source link

Visualizing stories on device preview #23

Closed gcostaapps closed 3 years ago

gcostaapps commented 3 years ago

Is there a way to visualize the stories using device preview?

I've tried to add this line to Storybook but the entire page gets wrapped inside device_preview, not only the storyh

 storyWrapperBuilder: (context, story, widget) =>
            DevicePreview.appBuilder(context, widget)
ookami-kb commented 3 years ago

I don't think that it's possible at the moment. But it looks like an interesting use case, I'll think about what can be done to support it.

ookami-kb commented 3 years ago

I've refactored the storybook to allow more customization options and uploaded a plugin for device_preview. Let me know if it solves your usecase.

gcostaapps commented 3 years ago

Thank you for the fast feedback and solution, I think it's great and it do solves my usecases!