storyWrapperBuilder property

StoryWrapperBuilder? storyWrapperBuilder
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 individual story wrapper by using Story.wrapperBuilder.

Implementation

final StoryWrapperBuilder? storyWrapperBuilder;