Skip to content

Commit

Permalink
Fix example app
Browse files Browse the repository at this point in the history
  • Loading branch information
thelukewalton committed Feb 14, 2024
1 parent fbb5d62 commit 17f426a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/lib/pages/assets/icons_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ class _IconsExampleState extends State<IconsExample> {
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(),
),
],
),
Expand Down

0 comments on commit 17f426a

Please sign in to comment.