style.js 1.91 KB
Newer Older
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
import {Dimensions, StyleSheet} from 'react-native';
import dimension from '../../values/dimension';
import colors from '../../values/colors';
import {color} from 'react-native-reanimated';
const windowWidth = Dimensions.get('window').width;
export const headerStyle = StyleSheet.create({});
export const contentStyle = StyleSheet.create({
  btnAddJob: {
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: colors.purple_blue,
    height: 40,
  },
  viewItemDay: {
    flex: 2,
    backgroundColor: '#eff0f5',
    justifyContent: 'center',
    alignItems: 'center',
  },
});

export const mainStyle = StyleSheet.create({
  row: {
    flexDirection: 'row',
    marginTop: 10,
  },
  marginSpaceAround: {
    justifyContent: 'space-around',
  },
  dropdown1DropdownStyle: {backgroundColor: '#EFEFEF'},
  dropdown1RowStyle: {backgroundColor: '#EFEFEF', borderBottomColor: '#C5C5C5'},
  dropdown1RowTxtStyle: {color: '#444', textAlign: 'left'},
  dropdown1BtnStyle: {
    backgroundColor: '#FFF',
    borderBottomWidth: 0.2,
    width: windowWidth - 60,
    marginTop: 10,
  },
  dropdown1BtnSelectManager: {
    backgroundColor: '#FFF',
    borderBottomWidth: 0.2,
    width: windowWidth - 10,
    marginTop: 10,
  },
  dropdown1BtnTxtStyle: {color: '#757575', textAlign: 'left', fontSize: 14},
  saveAndSendBtn: {fontWeight: 'bold'},
  viewSaveAndSendBtn: {
    justifyContent: 'center',
    alignItems: 'center',
    padding: 15,
    flex: 1,
  },
  viewBtn: {
    flex: 1,
    flexDirection: 'row',
    padding: 10,
    justifyContent: 'space-around',
    marginBottom: 30,
  },
  collapseView: {
    padding: 10,
    borderWidth: 0.1,
    borderBottomLeftRadius: 8,
    borderTopLeftRadius: 8,
    borderLeftWidth: 5,
    marginTop: 15,
    backgroundColor: 'white',
  },
  deleteBtn: {
    justifyContent: 'center',
    alignItems: 'center',
    padding: 15,
    flex: 1,
    backgroundColor: '#ffe2e5',
    marginTop: 10,
  },
});