2018-02-19 21:19:39 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2019-03-29 19:36:07 +00:00
|
|
|
|
|
|
|
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: {
|
2019-12-04 16:39:53 +00:00
|
|
|
flex: 1
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionItem: {
|
2019-12-04 16:39:53 +00:00
|
|
|
paddingVertical: 11,
|
2018-02-19 21:19:39 +00:00
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
|
|
|
sectionItemIcon: {
|
2019-03-01 16:49:11 +00:00
|
|
|
width: 56,
|
2019-12-04 16:39:53 +00:00
|
|
|
textAlign: 'center'
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionItemName: {
|
2019-03-29 19:36:07 +00:00
|
|
|
flex: 1,
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textRegular
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionItemDescription: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textRegular
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
separator: {
|
2019-12-04 16:39:53 +00:00
|
|
|
height: StyleSheet.hairlineWidth
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionSeparator: {
|
2019-12-04 16:39:53 +00:00
|
|
|
borderBottomWidth: StyleSheet.hairlineWidth,
|
|
|
|
height: 36
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
sectionSeparatorBorder: {
|
2019-12-04 16:39:53 +00:00
|
|
|
borderTopWidth: StyleSheet.hairlineWidth
|
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,
|
2019-12-04 16:39:53 +00:00
|
|
|
paddingRight: 16,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textMedium
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
|
|
|
roomDescription: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 13,
|
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
roomTitleRow: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
});
|