Skip to content

Commit

Permalink
feat: adding NesIcons16 topArrowIndicator and bottomArrowIndicator
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo committed Mar 13, 2024
1 parent 8665e32 commit 234f6c2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
- feat: adding `NesIcons16.handPointingRight`
- feat: adding `NesIcons16.leftArrowIndicator`
- feat: adding `NesIcons16.rightArrowIndicator`
- feat: adding `NesIcons16.topArrowIndicator`
- feat: adding `NesIcons16.bottomArrowIndicator`

# 0.18.0
- feat: add `NesIcons.wrench`
Expand Down
10 changes: 10 additions & 0 deletions example/lib/gallery/sections/icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,16 @@ class IconsSection extends StatelessWidget {
label: 'rightArrowIndicator',
is16x16: true,
),
_IconEntry(
data: NesIcons16.topArrowIndicator,
label: 'topArrowIndicator',
is16x16: true,
),
_IconEntry(
data: NesIcons16.bottomArrowIndicator,
label: 'bottomArrowIndicator',
is16x16: true,
),
_IconEntry(
data: NesIcons16.bell,
label: 'bell',
Expand Down
14 changes: 14 additions & 0 deletions lib/src/widgets/nes_icon16.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,20 @@ class NesIcons16 {
),
);

/// A top arrow indicator icon.
static final topArrowIndicator = NesIconData(
MiniSprite.fromDataString(
'16,16;7,-1;2,0;13,-1;1,0;1,3;1,2;1,0;12,-1;1,0;1,2;1,1;1,0;11,-1;1,0;1,3;1,2;3,0;10,-1;1,0;1,2;1,1;3,0;9,-1;1,0;1,3;1,2;5,0;8,-1;1,0;1,2;1,1;5,0;7,-1;1,0;1,3;1,2;7,0;6,-1;1,0;1,2;1,1;7,0;5,-1;1,0;1,3;1,2;9,0;4,-1;1,0;1,2;1,1;9,0;3,-1;1,0;1,3;1,2;11,0;2,-1;1,0;1,2;1,1;11,0;1,-1;1,0;1,3;1,2;14,0;1,2;1,1;29,0',
),
);

/// A bottom arrow indicator icon.
static final bottomArrowIndicator = NesIconData(
MiniSprite.fromDataString(
'16,16;17,0;1,2;1,1;14,0;1,3;1,2;13,0;1,-1;1,0;1,2;1,1;11,0;2,-1;1,0;1,3;1,2;11,0;3,-1;1,0;1,2;1,1;9,0;4,-1;1,0;1,3;1,2;9,0;5,-1;1,0;1,2;1,1;7,0;6,-1;1,0;1,3;1,2;7,0;7,-1;1,0;1,2;1,1;5,0;8,-1;1,0;1,3;1,2;5,0;9,-1;1,0;1,2;1,1;3,0;10,-1;1,0;1,3;1,2;3,0;11,-1;1,0;1,2;1,1;1,0;12,-1;1,0;1,3;1,2;1,0;13,-1;2,0;7,-1',
),
);

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

0 comments on commit 234f6c2

Please sign in to comment.