import React ,{ Component } from 'react'; import { StyleSheet, Dimensions, View, Text, Image, ScrollView, TouchableOpacity, Button } from 'react-native'; import styles from './styles'; class aboutHRB extends Component { static navigationOptions = ({ navigation }) => ({ headerLeft: ( { navigation.goBack(); }} > ), headerTitle: 關於HRB }); render() { const { navigation } = this.props; return ( 版本資訊 HRB_Mobile_20161229_39alba.lpa 修改日期 2016/12/29 08:43:55 裝置支援 ios 9.0以上/iphone 5以上 其他說明 { navigation.navigate('PrivacyStatement', { props: this.props }); }}> 服務條款及隱私權政策 ) } }; export default aboutHRB;