You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Am I right in using ref={c => this.node = c && c.refs.node} on an Animated component to access the underlying node? I was unsure of the best way to do this. Apologies if this is documented somewhere, I couldn't seem to find anything. If not, I'd be happy to add proper docs wherever.
The text was updated successfully, but these errors were encountered:
Technically you'd want to access refs.node but the React Native implementation added a getNode method. We should also not be using string refs anymore. That should be fixed.
Am I right in using
ref={c => this.node = c && c.refs.node}
on anAnimated
component to access the underlying node? I was unsure of the best way to do this. Apologies if this is documented somewhere, I couldn't seem to find anything. If not, I'd be happy to add proper docs wherever.The text was updated successfully, but these errors were encountered: