From 8665e3285e4348b40fe662f49d451a72e60afd2d Mon Sep 17 00:00:00 2001 From: Erick Zanardo Date: Wed, 13 Mar 2024 11:00:42 -0300 Subject: [PATCH] feat: adding NesIcons16.rightArrowIndicator --- CHANGELOG.md | 1 + example/lib/gallery/sections/icons.dart | 5 +++++ lib/src/widgets/nes_icon16.dart | 21 ++++++++++++++------- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d790a86..517cc36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - feat: adding `NesIcons16.close` - feat: adding `NesIcons16.handPointingRight` - feat: adding `NesIcons16.leftArrowIndicator` + - feat: adding `NesIcons16.rightArrowIndicator` # 0.18.0 - feat: add `NesIcons.wrench` diff --git a/example/lib/gallery/sections/icons.dart b/example/lib/gallery/sections/icons.dart index 17da998..7d8b9ed 100644 --- a/example/lib/gallery/sections/icons.dart +++ b/example/lib/gallery/sections/icons.dart @@ -464,6 +464,11 @@ class IconsSection extends StatelessWidget { label: 'leftArrowIndicator', is16x16: true, ), + _IconEntry( + data: NesIcons16.rightArrowIndicator, + label: 'rightArrowIndicator', + 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 3e19bc2..9543f14 100644 --- a/lib/src/widgets/nes_icon16.dart +++ b/lib/src/widgets/nes_icon16.dart @@ -21,13 +21,6 @@ class NesIcons16 { ), ); - /// A bell icon. - static final bell = NesIconData( - MiniSprite.fromDataString( - '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( @@ -41,4 +34,18 @@ class NesIcons16 { '16,16;13,-1;3,0;11,-1;5,0;9,-1;7,0;7,-1;9,0;5,-1;11,0;3,-1;13,0;1,-1;16,0;1,2;1,1;14,0;1,3;2,2;1,1;11,0;1,-1;2,0;1,3;2,2;1,1;9,0;3,-1;2,0;1,3;2,2;1,1;7,0;5,-1;2,0;1,3;2,2;1,1;5,0;7,-1;2,0;1,3;2,2;1,1;3,0;9,-1;2,0;1,3;2,2;1,1;1,0;11,-1;2,0;1,3;1,2;1,0;13,-1;3,0', ), ); + + /// A right arrow indicator icon. + static final rightArrowIndicator = NesIconData( + MiniSprite.fromDataString( + '16,16;3,0;13,-1;5,0;11,-1;7,0;9,-1;9,0;7,-1;11,0;5,-1;13,0;3,-1;15,0;1,-1;13,0;1,1;1,2;12,0;1,1;2,2;1,3;10,0;1,1;2,2;1,3;2,0;1,-1;7,0;1,1;2,2;1,3;2,0;3,-1;5,0;1,1;2,2;1,3;2,0;5,-1;3,0;1,1;2,2;1,3;2,0;7,-1;1,0;1,1;2,2;1,3;2,0;9,-1;1,0;1,2;1,3;2,0;11,-1;3,0;13,-1', + ), + ); + + /// A bell icon. + static final bell = NesIconData( + MiniSprite.fromDataString( + '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', + ), + ); }