Issue With Navigation In React Native - Organizing Properly
Am trying to start playing with React Native now. And I come from web development field. Since start, am trying to organize my folder structure so that it would be easy for me to u
Solution 1:
import React, { Component } from 'react';
import { createStackNavigator, createAppContainer } from 'react-navigation';
import ScreenOne from './ScreenOne';
import ScreenTwo from './ScreenTwo';
const NavStack = createStackNavigator({
ScreenOne: {
screen: ScreenOne,
},
ScreenTwo: {
screen: ScreenTwo,
},
});
const App = createAppContainer(NavStack);
export default App;
Post a Comment for "Issue With Navigation In React Native - Organizing Properly"