/** * Created by zack on 2018/4/30. */ import { View, Text, StyleSheet, Image, TouchableOpacity, TextInput } from 'react-native' import React, {Component} from 'react' import {NavigationBarHeight, TabBarHeight, ScreenDimensions} from '../../../../utils/DimensionsTools' export default class MyAnswerQuestionPageViewItem extends Component { render() { return( {'关于罗马拼音?'} {'0回答'} ) } } const styles = StyleSheet.create({ View: { width: ScreenDimensions.width, backgroundColor: 'white' }, TitleText: { fontSize: 16, color: '#000000', marginLeft: 21, marginTop: 22, }, ReadNumberText: { fontSize: 15, color: '#9c9c9c', marginLeft: 21, marginTop: 15, }, BottomLineView: { width: ScreenDimensions.width, height: 8, backgroundColor: '#efeff4', marginTop: 20, } })