I got this yellow warning message when trying to navigate the through pages.
navigation.navigate is not a function
My code
export default (navigation) => (
<View>
<Card>
<Button
onPress={() => {
onSignIn().then(() => navigation.navigate("SignedIn")); //yellow warning message
}}
/>
</Card>
</View>
);
This solution not really helping - navigation.navigate is not a function.