Skip to content

Commit

Permalink
icons/0.1.61 (#20)
Browse files Browse the repository at this point in the history
* icons.dart

* Fix example app

* [automated commit] lint format and import sort

---------

Co-authored-by: zeta-icons-bot <[email protected]>
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
3 people authored Feb 14, 2024
1 parent 2560be2 commit de6d76d
Show file tree
Hide file tree
Showing 2 changed files with 912 additions and 914 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
Loading

0 comments on commit de6d76d

Please sign in to comment.