/** * 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 MoreSpecialQuestionTitleItem extends Component { render() { return( {'编辑精选'} ) } } const styles = StyleSheet.create({ View: { width: ScreenDimensions.width, backgroundColor: 'white', }, TitleText: { marginLeft: 22, marginTop: 19, marginBottom: 19, fontSize: 17, color: '#000000' }, BottomLineView: { width: ScreenDimensions.width, height: 0.5, backgroundColor: '#efeff4' } })