Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The "Configure Codegen to run" section in the fabric-native-components-introduction documentation appears to be incorrect or contains inaccurate information in version 0.76 #4516

Open
koreanddinghwan opened this issue Feb 18, 2025 · 1 comment

Comments

@koreanddinghwan
Copy link

Description

fabric-native-components-introduction#1-run-codegen

this should be changed into

bundle exec pod install

fabric-native-components-introduction#2-configure-codegen-to-run

this should be changed into
com.webview

Documentation version

0.76

@koreanddinghwan koreanddinghwan changed the title The "Configure Codegen to run" section in the fabric-native-components-introduction documentation appears to be incorrect or contains inaccurate information. The "Configure Codegen to run" section in the fabric-native-components-introduction documentation appears to be incorrect or contains inaccurate information in version 0.76 Feb 18, 2025
@darhoul
Copy link

darhoul commented Mar 7, 2025

import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import LoginScreen from './screens/LoginScreen';
import ChatListScreen from './screens/ChatListScreen';
import ChatScreen from './screens/ChatScreen';

const Stack = createStackNavigator();

export default function App() {
return (

<Stack.Navigator>
<Stack.Screen name="Login" component={LoginScreen} />
<Stack.Screen name="ChatList" component={ChatListScreen} />
<Stack.Screen name="Chat" component={ChatScreen} />
</Stack.Navigator>

);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants