| 1234567891011121314151617181920212223242526 |
- import React from 'react';
- import { View, Text, StyleSheet, TouchableOpacity } from 'react-native';
-
- const SettingsScreen = ({navigation}) => {
- return (
- <View style={styles.container}>
- <Text>Settings</Text>
- <TouchableOpacity onPress={() => navigation.goBack()}>
- <Text>Go Back</Text>
- </TouchableOpacity>
- <TouchableOpacity onPress={() => navigation.openDrawer()}>
- <Text>Open drawer</Text>
- </TouchableOpacity>
- </View>
- )
- }
-
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center'
- }
- })
-
- export default SettingsScreen;
|