import React, {Component} from 'react'; import {Image, Text, View, TouchableOpacity, StyleSheet} from 'react-native'; import public_css from '../../source/css/public_css'; export default class tax_message extends Component { constructor(props) { super(props); this.props.navigation.dangerouslyGetParent().setOptions({ tabBarVisible: false, }); this.state = { title: this.props.route.params.message.msgTitle, date: this.props.route.params.message.createTime, message: this.props.route.params.message.msgBrief, }; } render() { return ( {this.state.title} {this.state.date} {this.state.message} ); } }