styles.js 1.45 KB
Newer Older
李彥志's avatar
李彥志 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
import {
    StyleSheet
  } from 'react-native';

  export default StyleSheet.create({
    nav_left_touch_container: {
      height: 44,
      flexDirection: 'column',
      justifyContent: 'center',
      alignItems: 'center'
    },
    nav_left_icon_container: {
      marginLeft: 20
    },
    nav_icon: {
      width: 27,
      height: 27
    },
    headerTitleContainer: {
      flex: 1,
      justifyContent: 'center',
      alignItems: 'center',
      paddingRight: 30
    },
    headerTitleTxt: {
      color: '#000',
      fontSize: 17,
      lineHeight: 22,
      letterSpacing: -0.41,
    },
container: {
    flex: 1,
    backgroundColor: '#FFF'
  },
  subContainer: {
    flex: 1,
    flexDirection: 'column'
  },
imageContainer: {
    justifyContent: 'center',
    alignItems: 'center',
    marginVertical: 30
  },
innerContainer: {
    flexDirection: 'column',
    flex: 1
  }, 
  contentContainer: {
    flexDirection: 'row',
    alignItems: 'center',
    marginHorizontal: 16,
    borderBottomColor: '#BCBBC1',
    borderBottomWidth: 1,
    height: 44
  },
  contentText: {
    fontSize: 17,
    color: '#4D4D4D',
    textAlign: 'right',
  },
  privacyContentContainer: {
    flexDirection: 'row',
    alignItems: 'center',
    marginHorizontal: 16,
    marginTop: 44,
    borderBottomColor: '#BCBBC1',
    borderBottomWidth: 0.5,
    height: 44
  },
  nextArrow: {
    width: 8,
    height: 13
  },
  rowItemRight: {
    alignItems: 'flex-end',
    flex: 1,
  }
});