Open mx-kshitij opened 2 years ago
i am also having the same issue with this code :
import { createNativeStackNavigator } from "@react-navigation/native-stack"; import React from "react"; const Stack = createNativeStackNavigator();
export const App = () => { return (
); };
const HomeScreen = ({ navigation }) => {
return (
<Button
title="Go to Jane's profile"
onPress={() => navigation.navigate("Profile", { name: "Jane" })}
/>
);
};
const ProfileScreen = ({ navigation, route }) => {
return
and i have done all commands to install the librarys
Hi,
I tried to use this lib in a native widget that I am working on. Tried to use the code from "basic usage" and am getting the error - TypeError: undefined is not an object (evaluating 'component.displayName')