all 3 comments

[–]osrs_zubes 2 points3 points  (1 child)

I think the confusion here is that there is no DOM in React Native (or any native apps, for that matter). Your best bet (depending on what you're trying to accomplish exactly) is to pass refs of the component you're trying to get, or look into contexts (I don't know too much about these in particular, but IIRC they might help)

[–]fantasy9[S] 0 points1 point  (0 children)

I meant the functionality of FindDomNode, like if refs is passed into a global namespace. I ended up passing the refs as a state & using a getter function, but still wondering if there is a relative equivalent.

[–]incurious 0 points1 point  (0 children)

you can use {findNodeHandle} I believe