diff --git a/CHANGELOG.md b/CHANGELOG.md index 5427051..4af3084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - feat: Dialogs close on ESC key. - feat: adding `NesIcons.bell` and `NesIcons16.bell` - feat: adding `NesIcons16.close` + - feat: adding `NesIcons16.handPointingRight` # 0.18.0 - feat: add `NesIcons.wrench` diff --git a/example/lib/gallery/sections/icons.dart b/example/lib/gallery/sections/icons.dart index beaa535..05f566c 100644 --- a/example/lib/gallery/sections/icons.dart +++ b/example/lib/gallery/sections/icons.dart @@ -454,6 +454,11 @@ class IconsSection extends StatelessWidget { label: 'close', is16x16: true, ), + _IconEntry( + data: NesIcons16.handPointingRight, + label: 'handPointingRight', + is16x16: true, + ), _IconEntry( data: NesIcons16.bell, label: 'bell', diff --git a/lib/src/widgets/nes_icon16.dart b/lib/src/widgets/nes_icon16.dart index 50020d3..8d2332a 100644 --- a/lib/src/widgets/nes_icon16.dart +++ b/lib/src/widgets/nes_icon16.dart @@ -27,4 +27,11 @@ class NesIcons16 { '16,16;6,-1;4,0;11,-1;1,0;4,3;1,0;9,-1;1,0;1,3;1,1;3,2;1,3;1,0;8,-1;1,0;1,3;2,1;2,2;1,3;1,0;7,-1;1,0;1,3;3,1;3,2;1,3;1,0;6,-1;1,0;1,3;3,1;3,2;1,3;1,0;6,-1;1,0;1,3;3,1;3,2;1,3;1,0;5,-1;1,0;2,3;3,1;4,2;1,3;1,0;4,-1;1,0;2,3;3,1;4,2;1,3;1,0;3,-1;1,0;2,3;4,1;5,2;1,3;1,0;1,-1;1,0;4,3;4,1;5,2;1,3;2,0;14,3;17,0;5,-1;1,0;2,3;2,2;1,0;11,-1;1,0;2,3;1,0;13,-1;2,0;7,-1', ), ); + + /// A hand pointing right icon. + static final handPointingRight = NesIconData( + MiniSprite.fromDataString( + '16,16;37,-1;3,0;12,-1;1,0;2,2;1,0;11,-1;1,0;1,2;1,1;1,0;10,-1;2,0;1,2;2,1;11,0;1,2;1,0;11,1;1,2;2,0;1,1;1,0;5,1;9,0;1,1;1,0;1,1;3,0;4,1;1,2;1,0;3,-1;1,0;1,3;1,0;1,1;3,3;1,1;5,0;3,-1;1,0;1,3;1,0;1,3;3,0;2,1;2,3;1,0;5,-1;2,0;3,3;2,1;4,0;7,-1;1,0;5,3;1,0;10,-1;6,0;38,-1', + ), + ); }