diff --git a/example/lib/pages/assets/icons_example.dart b/example/lib/pages/assets/icons_example.dart index 0933846e..7c317217 100644 --- a/example/lib/pages/assets/icons_example.dart +++ b/example/lib/pages/assets/icons_example.dart @@ -27,7 +27,7 @@ class _IconsExampleState extends State { Wrap( spacing: 8, runSpacing: 8, - children: iconsRounded.values.map((e) => Icon(e)).toList(), + children: iconsRound.values.map((e) => Icon(e)).toList(), ), const SizedBox(height: 20), Text('Sharp', style: ZetaTextStyles.bodyLarge), diff --git a/example/widgetbook/pages/assets/icon_widgetbook.dart b/example/widgetbook/pages/assets/icon_widgetbook.dart index 5dfc5ab5..3c68723f 100644 --- a/example/widgetbook/pages/assets/icon_widgetbook.dart +++ b/example/widgetbook/pages/assets/icon_widgetbook.dart @@ -7,7 +7,7 @@ import '../../test/test_components.dart'; Widget iconsUseCase(BuildContext context) { Map icons = - ((context.knobs.boolean(label: 'Rounded', initialValue: true)) ? iconsRounded : iconsSharp); + ((context.knobs.boolean(label: 'Rounded', initialValue: true)) ? iconsRound : iconsSharp); final Map sortedIcons = Map.fromEntries(icons.entries.toList() ..sort((a, b) { diff --git a/example/widgetbook/utils/utils.dart b/example/widgetbook/utils/utils.dart index 207ec12c..df07891c 100644 --- a/example/widgetbook/utils/utils.dart +++ b/example/widgetbook/utils/utils.dart @@ -4,7 +4,7 @@ import 'package:zeta_flutter/zeta_flutter.dart'; String iconLabelBuilder(IconData? value, [bool rounded = true]) { return ((rounded - ? iconsRounded.entries.firstWhere((element) => element.value == value) + ? iconsRound.entries.firstWhere((element) => element.value == value) : iconsSharp.entries.firstWhere((element) => element.value == value)) .key .split('.') @@ -14,7 +14,7 @@ String iconLabelBuilder(IconData? value, [bool rounded = true]) { .join(' '); } -List iconOptions(rounded) => rounded ? iconsRounded.values.toList() : iconsSharp.values.toList(); +List iconOptions(rounded) => rounded ? iconsRound.values.toList() : iconsSharp.values.toList(); String enumLabelBuilder(Enum? value) => value?.name.split('.').last.capitalize() ?? ''; diff --git a/lib/src/assets/fonts/zeta-icons-sharp.ttf b/lib/src/assets/fonts/zeta-icons-sharp.ttf index 009219f4..266d2131 100644 Binary files a/lib/src/assets/fonts/zeta-icons-sharp.ttf and b/lib/src/assets/fonts/zeta-icons-sharp.ttf differ