-
-
Notifications
You must be signed in to change notification settings - Fork 909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Widgets flickering #3343
fix: Widgets flickering #3343
Conversation
return frame.sprite.image != newFrame.sprite.image || | ||
frame.sprite.src != newFrame.sprite.src; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to take previous
into consideration here right? And then have the default of the fold true
instead of false
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duh 🤦 ofc I need! Thanks!
@@ -21,6 +22,15 @@ void addWidgetsStories(Dashbook dashbook) { | |||
out the settings on the pen icon. | |||
''', | |||
) | |||
..add( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love that you're adding an extra example for this as well!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good stuff, lgtm!
Thank you for the swift action on this! |
Description
Fix the flickering in the widgets:
SpriteAnimationWidget
,SpriteWidget
andNineTileBoxWidget
.Checklist
docs
and added dartdoc comments with///
.examples
ordocs
.Breaking Change?
Related Issues
Closes #3342