Replies: 1 comment 1 reply
-
Tracker has a special feature for your use-case. You need the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a widget which is supposed to open dialog when the user clicks to a button.
This widget (the one that opens the dialog) is a SimpleComponent
Normally I would do something like this:
This works, but now I have:
However this doesn't work because of
#[tracker::track]
andPartialEq
. I'm getting an error:binary operation
==cannot be applied to type
Controller`If I remove track and derive annotations, then it's fine but I need the tracker here. How to solve this?
Beta Was this translation helpful? Give feedback.
All reactions