13 lines
388 B
Dart
13 lines
388 B
Dart
import 'package:please_pay_me/theme/theme.dart';
|
|
import 'package:widgetbook/widgetbook.dart';
|
|
|
|
/// Light / dark Cupertino theme built from the shared product tokens.
|
|
CupertinoThemeAddon buildThemeAddon() {
|
|
return CupertinoThemeAddon(
|
|
themes: [
|
|
WidgetbookTheme(name: 'Light', data: buildLightTheme()),
|
|
WidgetbookTheme(name: 'Dark', data: buildDarkTheme()),
|
|
],
|
|
);
|
|
}
|