Initial Route

Initial routes can be used to pick the home page that is used on first launch by providing a initialRoute parameter to the Config.

dart
widgetbook/lib/widgetbook.config.dart
final config = Config(
  // ...
  initialRoute: '?path=introduction/home-story',
);

On this page