Skip to content

Commit

Permalink
feat: adding NesIcons16.close
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo committed Mar 11, 2024
1 parent b52dc3d commit 1d247b9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- feat: adding `NesIcons16.check`
- feat: Dialogs close on ESC key.
- feat: adding `NesIcons.bell` and `NesIcons16.bell`
- feat: adding `NesIcons16.close`

# 0.18.0
- feat: add `NesIcons.wrench`
Expand Down
5 changes: 5 additions & 0 deletions example/lib/gallery/sections/icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,11 @@ class IconsSection extends StatelessWidget {
label: 'check',
is16x16: true,
),
_IconEntry(
data: NesIcons16.close,
label: 'close',
is16x16: true,
),
_IconEntry(
data: NesIcons16.bell,
label: 'bell',
Expand Down
7 changes: 7 additions & 0 deletions lib/src/widgets/nes_icon16.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ class NesIcons16 {
),
);

/// A check close.
static final close = NesIconData(
MiniSprite.fromDataString(
'16,16;2,-1;1,0;10,-1;1,0;3,-1;1,0;1,2;1,0;8,-1;1,0;1,2;1,0;1,-1;1,0;1,3;1,1;1,2;1,0;6,-1;1,0;1,2;1,1;1,3;1,0;1,-1;1,0;1,3;1,1;1,2;1,0;4,-1;1,0;1,2;1,1;1,3;1,0;3,-1;1,0;1,3;1,1;1,2;1,0;2,-1;1,0;1,2;1,1;1,3;1,0;5,-1;1,0;1,3;1,1;1,2;2,0;1,2;1,1;1,3;1,0;7,-1;1,0;1,3;1,1;2,2;1,1;1,3;1,0;9,-1;1,0;1,3;2,1;1,3;1,0;10,-1;1,0;1,2;3,1;1,0;9,-1;1,0;1,2;1,1;2,3;1,1;1,2;1,0;7,-1;1,0;1,2;1,1;1,3;2,0;1,3;1,1;1,2;1,0;5,-1;1,0;1,2;1,1;1,3;1,0;2,-1;1,0;1,3;1,1;1,2;1,0;3,-1;1,0;1,2;1,1;1,3;1,0;4,-1;1,0;1,3;1,1;1,2;1,0;1,-1;1,0;1,2;1,1;1,3;1,0;6,-1;1,0;1,3;1,1;1,2;1,0;1,-1;1,0;1,3;1,0;8,-1;1,0;1,3;1,0;3,-1;1,0;10,-1;1,0;2,-1',
),
);

/// A bell icon.
static final bell = NesIconData(
MiniSprite.fromDataString(
Expand Down

0 comments on commit 1d247b9

Please sign in to comment.