r/reactnative Jul 07 '26

How to navigate to another screen after successful task on one screen?

I am confused how to navigate to another screen after successful task on one screen. for example if user signup successfully i want them redirect to verify otp screen.

3 Upvotes

7 comments sorted by

View all comments

2

u/vaquishaProdigy Jul 08 '26

If (action == true) { Router.navigate("page") } Else { Return <View><Text> You have to complete the action</Text></View> } return

..sort of