skip to Main Content

Why I do not see any props in React Native?

I'm trying to pass some props to class component from function component via navigation. At Function component I'm writing: export default function StartScreen() { const navigation = useNavigation(); function onButtonPress(){ navigation.navigate("Main",{'test':'Test'}); } return( <> <AnimatedTouchable onPress={onButtonPress}></AnimatedTouchable> </> ) } At…

VIEW QUESTION
Back To Top
Search