/** * 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 MyAnswerAnswerPageViewItem extends Component { render() { return( {'英语学习的重要性用英语提问五个日常问题? '} {'语法看一遍,就只看一遍,重点了解。'} {'2赞.3阅读'} ) } } const styles = StyleSheet.create({ View: { width: ScreenDimensions.width, backgroundColor: 'white', }, TitleText: { fontSize: 16, color: '#000000', marginTop: 17, marginLeft: 22, marginRight: 22, }, SubTitleText: { fontSize: 15, marginTop: 18, marginLeft: 22, color: "rgba(36, 35, 35, 0.75)", opacity: 0.75, marginRight: 22, }, ReadNumberText: { fontSize: 15, color: '#9c9c9c', marginTop: 21, marginLeft: 22, }, BottomLineView: { width: ScreenDimensions.width, height: 8, backgroundColor: '#efeff4', marginTop: 20, } })