expo-custom-navigation
Version:
custom navigation for your expo project
16 lines (15 loc) • 402 B
JavaScript
import { View, Text, StyleSheet } from 'react-native';
const About = () => {
return (<View style={styles.container}>
<Text>This is a About Screen</Text>
</View>);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
export default About;