ookami-kb / storybook_flutter

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

fix: add missing Cupertino localisations #137

Closed HappyEmu closed 4 months ago

HappyEmu commented 4 months ago

Even though the Knobs are based on Material Design, the Flutter SDK still instantiates Cupertino based widgets for example for the TextField widget, since it will display a CupertinoTextSelectionToolbarButton. This will lead to an Exception on iOS platforms when that toolbar needs to be rendered.

This PR fixes this exception by also providing the DefaultCupertinoLocalizations delegate.