No Description

MoreSpecialQuestionTitleItem.js 842B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 MoreSpecialQuestionTitleItem extends Component {
  15. render() {
  16. return(
  17. <View style={styles.View}>
  18. <Text style={styles.TitleText}>{'编辑精选'}</Text>
  19. <View style={styles.BottomLineView}/>
  20. </View>
  21. )
  22. }
  23. }
  24. const styles = StyleSheet.create({
  25. View: {
  26. width: ScreenDimensions.width,
  27. backgroundColor: 'white',
  28. },
  29. TitleText: {
  30. marginLeft: 22,
  31. marginTop: 19,
  32. marginBottom: 19,
  33. fontSize: 17,
  34. color: '#000000'
  35. },
  36. BottomLineView: {
  37. width: ScreenDimensions.width,
  38. height: 0.5,
  39. backgroundColor: '#efeff4'
  40. }
  41. })