2018-02-19 21:19:39 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2019-03-27 20:06:57 +00:00
|
|
|
import { COLOR_SEPARATOR } from '../../constants/colors';
|
2018-02-19 21:19:39 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2018-08-01 19:35:06 +00:00
|
|
|
flex: 1,
|
2018-02-19 21:19:39 +00:00
|
|
|
backgroundColor: '#F6F7F9'
|
|
|
|
},
|
|
|
|
sectionItem: {
|
|
|
|
backgroundColor: '#ffffff',
|
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,
|
2018-02-19 21:19:39 +00:00
|
|
|
textAlign: 'center'
|
|
|
|
},
|
|
|
|
sectionItemName: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
sectionItemDescription: {
|
2018-03-29 17:55:37 +00:00
|
|
|
color: '#ccc'
|
|
|
|
},
|
|
|
|
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: {
|
|
|
|
borderColor: '#EBEDF1',
|
|
|
|
borderTopWidth: 1
|
|
|
|
},
|
|
|
|
textColorDanger: {
|
|
|
|
color: '#f5455c'
|
|
|
|
},
|
|
|
|
avatar: {
|
|
|
|
marginHorizontal: 10
|
|
|
|
},
|
|
|
|
roomTitleContainer: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
roomTitle: {
|
|
|
|
fontSize: 16
|
|
|
|
},
|
|
|
|
roomDescription: {
|
|
|
|
fontSize: 12,
|
2018-03-29 17:55:37 +00:00
|
|
|
color: '#ccc'
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
roomTitleRow: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
});
|