2018-02-19 21:19:39 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2019-03-29 19:36:07 +00:00
|
|
|
import {
|
|
|
|
COLOR_SEPARATOR, COLOR_BORDER, COLOR_DANGER, COLOR_WHITE
|
|
|
|
} from '../../constants/colors';
|
|
|
|
|
|
|
|
import sharedStyles from '../Styles';
|
2018-02-19 21:19:39 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
2019-03-29 19:36:07 +00:00
|
|
|
contentContainer: {
|
|
|
|
paddingBottom: 30
|
|
|
|
},
|
2018-02-19 21:19:39 +00:00
|
|
|
container: {
|
2018-08-01 19:35:06 +00:00
|
|
|
flex: 1,
|
2018-02-19 21:19:39 +00:00
|
|
|
backgroundColor: '#F6F7F9'
|
|
|
|
},
|
|
|
|
sectionItem: {
|
2019-03-29 19:36:07 +00:00
|
|
|
backgroundColor: COLOR_WHITE,
|
2018-03-29 17:55:37 +00:00
|
|
|
paddingVertical: 16,
|
2018-02-19 21:19:39 +00:00
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
2018-03-29 17:55:37 +00:00
|
|
|
sectionItemDisabled: {
|
|
|
|
opacity: 0.3
|
|
|
|
},
|
2018-02-19 21:19:39 +00:00
|
|
|
sectionItemIcon: {
|
2019-03-01 16:49:11 +00:00
|
|
|
width: 56,
|
2019-03-29 19:36:07 +00:00
|
|
|
textAlign: 'center',
|
|
|
|
...sharedStyles.textColorNormal
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionItemName: {
|
2019-03-29 19:36:07 +00:00
|
|
|
flex: 1,
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textColorNormal,
|
|
|
|
...sharedStyles.textRegular
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionItemDescription: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textColorDescription,
|
|
|
|
...sharedStyles.textRegular
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
separator: {
|
|
|
|
height: StyleSheet.hairlineWidth,
|
2019-03-27 20:06:57 +00:00
|
|
|
backgroundColor: COLOR_SEPARATOR
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionSeparator: {
|
|
|
|
height: 10,
|
|
|
|
backgroundColor: '#F6F7F9'
|
|
|
|
},
|
|
|
|
sectionSeparatorBorder: {
|
2019-03-29 19:36:07 +00:00
|
|
|
borderColor: COLOR_BORDER,
|
2018-02-19 21:19:39 +00:00
|
|
|
borderTopWidth: 1
|
|
|
|
},
|
|
|
|
textColorDanger: {
|
2019-03-29 19:36:07 +00:00
|
|
|
color: COLOR_DANGER
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
avatar: {
|
2019-03-29 19:36:07 +00:00
|
|
|
marginHorizontal: 16
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
roomTitleContainer: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
roomTitle: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 16,
|
|
|
|
...sharedStyles.textColorNormal,
|
|
|
|
...sharedStyles.textMedium
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
roomDescription: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 13,
|
|
|
|
...sharedStyles.textColorDescription,
|
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
roomTitleRow: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
});
|