Issue with pushViewController inside native UIViewControllers #866
-
I have RNScreen native stack setup with a real native screen mounted from Swift. When I try to call
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I think you have to resolve the internals by yourself unfortunately. The |
Beta Was this translation helpful? Give feedback.
@WoLewicki
I did debug the cause of this since posting this discussion. I am definitely not using the prop
stackAnimation
myself.The error occurs at this line.
And it's happening because the View I'm trying to push is not a
RNScreenView
instance but a simpleUIView
instance, which doesn't contain thestackAnimation
property. Hence resulting in the above error.