diff --git a/example/lib/pages/assets/icons_example.dart b/example/lib/pages/assets/icons_example.dart index b2694c7e..0933846e 100644 --- a/example/lib/pages/assets/icons_example.dart +++ b/example/lib/pages/assets/icons_example.dart @@ -27,14 +27,14 @@ class _IconsExampleState extends State { Wrap( spacing: 8, runSpacing: 8, - children: iconsRounded.map((e) => Icon(e)).toList(), + children: iconsRounded.values.map((e) => Icon(e)).toList(), ), const SizedBox(height: 20), Text('Sharp', style: ZetaTextStyles.bodyLarge), Wrap( spacing: 8, runSpacing: 8, - children: iconsSharp.map((e) => Icon(e)).toList(), + children: iconsSharp.values.map((e) => Icon(e)).toList(), ), ], ),