view.js 434 Bytes
import React from 'react'
import { View, Text } from 'react-native'
import { styles } from './styles'
import {name as appName} from '../../../app.json';

const Page = ({ navigation }) => {
    return (
        <View >
            <Text style={styles.title} >{appName}</Text>
            <Text style={styles.title} onPress={() => navigation.navigate('About')} >查看APP详细信息</Text>
        </View>
    )
}

export default Page