UNPKG

expo-custom-navigation

Version:
16 lines (15 loc) 402 B
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;