@react-navigation/stack && @react-navigation/drawer (ok)
https://reactnavigation.org/docs/drawer-based-navigation/
Đọc thêm: https://reactnavigation.org/blog/2020/01/29/using-react-navigation-5-with-react-native-paper/
C:\Users\Administrator\Desktop\App\index.js
import { registerRootComponent } from 'expo';
import App from './App';
registerRootComponent(App);
C:\Users\Administrator\Desktop\App\App.js
import * as React from 'react';
import { Button, View } from 'react-native';
import { createDrawerNavigator } from '@react-navigation/drawer';
import { NavigationContainer } from '@react-navigation/native';
import Blog from './src/navigation/Blog';
import BlogDetails from './src/navigation/BlogDetails';
const Drawer = createDrawerNavigator();
export default function App() {
return (
<NavigationContainer>
<Drawer.Navigator initialRouteName="Blog">
<Drawer.Screen name="Blog" component={Blog} />
<Drawer.Screen name="BlogDetails" component={BlogDetails} />
</Drawer.Navigator>
</NavigationContainer>
);
}
C:\Users\Administrator\Desktop\App\src\navigation\Blog.js
import * as React from 'react';
import { Text, View, Button } from 'react-native';
const Blog = ({navigation}) => {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Button
onPress={() => navigation.navigate('BlogDetails')}
title="Go to BlogDetails"
/>
</View>
);
}
export default Blog;
C:\Users\Administrator\Desktop\App\src\navigation\BlogDetails.js
import * as React from 'react';
import { Text, View, Button } from 'react-native';
const BlogDetails = ({navigation}) => {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Button onPress={() => navigation.goBack()} title="Go back home" />
</View>
);
}
export default BlogDetails;
Vi du full ok
C:\Users\Administrator\Desktop\App\index.js
import { registerRootComponent } from 'expo';
import App from './App';
registerRootComponent(App);
C:\Users\Administrator\Desktop\App\App.js
import 'react-native-gesture-handler';
import * as React from 'react';
import { Button, View, Text, TouchableOpacity, Image } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { createDrawerNavigator } from '@react-navigation/drawer';
import FirstPage from './pages/Screen1';
import SecondPage from './pages/Screen2';
import ThirdPage from './pages/Screen3';
const Stack = createStackNavigator();
const Drawer = createDrawerNavigator();
const NavigationDrawerStructure = (props)=> {
const toggleDrawer = () => {
props.navigationProps.toggleDrawer();
};
return (
<View style={{ flexDirection: 'row' }}>
<TouchableOpacity onPress={()=> toggleDrawer()}>
{/*Donute Button Image */}
<Image
source={{uri: 'https://raw.githubusercontent.com/AboutReact/sampleresource/master/drawerWhite.png'}}
style={{ width: 25, height: 25, marginLeft: 5 }}
/>
</TouchableOpacity>
</View>
);
}
function firstScreenStack({ navigation }) {
return (
<Stack.Navigator initialRouteName="FirstPage">
<Stack.Screen
name="FirstPage"
component={FirstPage}
options={{
title: 'First Page', //Set Header Title
headerLeft: ()=> <NavigationDrawerStructure navigationProps={navigation} />,
headerStyle: {
backgroundColor: '#f4511e',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
},
}}
/>
</Stack.Navigator>
);
}
function secondScreenStack({ navigation }) {
return (
<Stack.Navigator
initialRouteName="SecondPage"
screenOptions={{
headerLeft: ()=> <NavigationDrawerStructure navigationProps={navigation} />,
headerStyle: {
backgroundColor: '#f4511e',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
}
}}>
<Stack.Screen
name="SecondPage"
component={SecondPage}
options={{
title: 'Second Page',
}}/>
<Stack.Screen
name="ThirdPage"
component={ThirdPage}
options={{
title: 'Third Page',
}}/>
</Stack.Navigator>
);
}
function App() {
return (
<NavigationContainer>
<Drawer.Navigator
drawerContentOptions={{
activeTintColor: '#e91e63',
itemStyle: { marginVertical: 5 },
}}>
<Drawer.Screen
name="FirstPage"
options={{ drawerLabel: 'First page Option' }}
component={firstScreenStack} />
<Drawer.Screen
name="SecondPage"
options={{ drawerLabel: 'Second page Option' }}
component={secondScreenStack} />
</Drawer.Navigator>
</NavigationContainer>
);
}
export default App;
C:\Users\Administrator\Desktop\App\pages\Screen1.js
import * as React from 'react';
import { Button, View, Text, SafeAreaView } from 'react-native';
const FirstPage = ({ navigation }) => {
return (
<SafeAreaView style={{ flex: 1 }}>
<View style={{ flex: 1 , padding: 16}}>
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}}>
<Text
style={{
fontSize: 25,
textAlign: 'center',
marginBottom: 16
}}>
This is the First Page under First Page Option
</Text>
<Button
onPress={() => navigation.navigate('SecondPage')}
title="Go to Second Page"
/>
<Button
onPress={() => navigation.navigate('ThirdPage')}
title="Go to Third Page"
/>
</View>
<Text style={{ fontSize: 18, textAlign: 'center', color: 'grey' }}>
React Navigate Drawer
</Text>
<Text
style={{ fontSize: 16, textAlign: 'center', color: 'grey' }}>
www.aboutreact.com
</Text>
</View>
</SafeAreaView>
);
}
export default FirstPage;
C:\Users\Administrator\Desktop\App\pages\Screen2.js
import * as React from 'react';
import { Button, View, Text, SafeAreaView } from 'react-native';
const SecondPage = ({ navigation }) => {
return (
<SafeAreaView style={{ flex: 1 }}>
<View style={{ flex: 1, padding: 16 }}>
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}}>
<Text
style={{
fontSize: 25,
textAlign: 'center',
marginBottom: 16
}}>
This is Second Page under Second Page Option
</Text>
<Button
title="Go to First Page"
onPress={() => navigation.navigate('FirstPage')}
/>
<Button
title="Go to Third Page"
onPress={() => navigation.navigate('ThirdPage')}
/>
</View>
<Text style={{ fontSize: 18, textAlign: 'center', color: 'grey' }}>
React Navigate Drawer
</Text>
<Text
style={{ fontSize: 16, textAlign: 'center', color: 'grey' }}>
www.aboutreact.com
</Text>
</View>
</SafeAreaView>
);
}
export default SecondPage;
C:\Users\Administrator\Desktop\App\pages\Screen3.js
import * as React from 'react';
import { Button, View, Text, SafeAreaView } from 'react-native';
const ThirdPage = ({ route, navigation }) => {
return (
<SafeAreaView style={{ flex: 1 }}>
<View style={{ flex: 1, padding: 16 }}>
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}}>
<Text
style={{
fontSize: 25,
textAlign: 'center',
marginBottom: 16
}}>
This is Third Page under Second Page Option
</Text>
<Button
onPress={() => navigation.navigate('FirstPage')}
title="Go to First Page"
/>
<Button
onPress={() => navigation.navigate('SecondPage')}
title="Go to Second Page"
/>
</View>
<Text style={{ fontSize: 18, textAlign: 'center', color: 'grey' }}>
React Navigate Drawer
</Text>
<Text
style={{ fontSize: 16, textAlign: 'center', color: 'grey' }}>
www.aboutreact.com
</Text>
</View>
</SafeAreaView>
);
}
export default ThirdPage;
Previous@react-navigation/stack && @react-navigation/bottom-tabs (ok)NextVideo Validate đồng bộ các trường trong Refux-form (ok)
Last updated
Was this helpful?