wrapperBuilder property

StoryWrapperBuilder? wrapperBuilder
final

Optional parameter to override story wrapper.

By default each story is wrapped into:

Container(
  color: story.background,
  padding: story.padding,
  child: Center(child: child),
)

You can also override wrapper for all stories by using Storybook.storyWrapperBuilder.

Implementation

final StoryWrapperBuilder? wrapperBuilder;