No Description

MyAnswerCollectionPageViewItem.js 1001B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * Created by zack on 2018/4/30.
  3. */
  4. import {
  5. View,
  6. Text,
  7. StyleSheet,
  8. Image,
  9. TouchableOpacity,
  10. TextInput
  11. } from 'react-native'
  12. import React, {Component} from 'react'
  13. import {NavigationBarHeight, TabBarHeight, ScreenDimensions} from '../../../../utils/DimensionsTools'
  14. export default class MyAnswerQuestionPageViewItem extends Component {
  15. render() {
  16. return(
  17. <View style={styles.View}>
  18. <Text style={styles.TitleText}>{'关于罗马拼音?'}</Text>
  19. <Text style={styles.ReadNumberText}>{'0回答'}</Text>
  20. <View style={styles.BottomLineView}/>
  21. </View>
  22. )
  23. }
  24. }
  25. const styles = StyleSheet.create({
  26. View: {
  27. width: ScreenDimensions.width,
  28. backgroundColor: 'white'
  29. },
  30. TitleText: {
  31. fontSize: 16,
  32. color: '#000000',
  33. marginLeft: 21,
  34. marginTop: 22,
  35. },
  36. ReadNumberText: {
  37. fontSize: 15,
  38. color: '#9c9c9c',
  39. marginLeft: 21,
  40. marginTop: 15,
  41. },
  42. BottomLineView: {
  43. width: ScreenDimensions.width,
  44. height: 8,
  45. backgroundColor: '#efeff4',
  46. marginTop: 20,
  47. }
  48. })