diff --git a/CHANGELOG.md b/CHANGELOG.md index 648652e..03b6b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.15.0 + - feat: add `NesIcons.audioMuted` + # 0.14.0 - feat: add `NesIcons.audio`. - feat: add `NesIcons.screen`. diff --git a/example/lib/gallery/sections/icons.dart b/example/lib/gallery/sections/icons.dart index c16f431..7a66b05 100644 --- a/example/lib/gallery/sections/icons.dart +++ b/example/lib/gallery/sections/icons.dart @@ -369,6 +369,10 @@ class IconsSection extends StatelessWidget { data: NesIcons.audio, label: 'audio', ), + _IconEntry( + data: NesIcons.audioMuted, + label: 'audioMuted', + ), _IconEntry( data: NesIcons.screen, label: 'screen', diff --git a/lib/src/widgets/nes_icon.dart b/lib/src/widgets/nes_icon.dart index d402cf8..d71f8d8 100644 --- a/lib/src/widgets/nes_icon.dart +++ b/lib/src/widgets/nes_icon.dart @@ -660,6 +660,13 @@ class NesIconCollection { ), ); + /// Audio Muted + late final audioMuted = NesIconData( + MiniSprite.fromDataString( + '8,8;1,0;3,-1;2,0;3,-1;1,0;1,-1;1,0;2,1;1,0;3,-1;1,0;3,1;1,0;1,-1;2,0;1,1;1,0;2,1;1,0;1,-1;2,0;2,1;1,0;1,1;1,0;3,-1;1,0;2,1;2,0;4,-1;1,0;2,1;1,0;5,-1;2,0;1,-1;1,0', + ), + ); + /// Screen late final screen = NesIconData( MiniSprite.fromDataString(