2018-03-29 17:55:37 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
2019-03-29 19:36:07 +00:00
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
import { COLOR_BACKGROUND_CONTAINER, COLOR_WHITE } from '../../constants/colors';
|
|
|
|
|
2018-03-29 17:55:37 +00:00
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2018-08-01 19:35:06 +00:00
|
|
|
flex: 1,
|
2019-03-29 19:36:07 +00:00
|
|
|
backgroundColor: COLOR_WHITE
|
2018-08-01 19:35:06 +00:00
|
|
|
},
|
|
|
|
scroll: {
|
2018-03-29 17:55:37 +00:00
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column',
|
2019-03-29 19:36:07 +00:00
|
|
|
backgroundColor: COLOR_WHITE,
|
2018-03-29 17:55:37 +00:00
|
|
|
padding: 10
|
|
|
|
},
|
|
|
|
item: {
|
|
|
|
padding: 10,
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
avatarContainer: {
|
|
|
|
height: 250,
|
|
|
|
flexDirection: 'column',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
avatar: {
|
|
|
|
marginHorizontal: 10
|
|
|
|
},
|
2018-05-24 20:17:45 +00:00
|
|
|
roomTitleContainer: {
|
2018-05-23 13:39:18 +00:00
|
|
|
paddingTop: 20,
|
|
|
|
flexDirection: 'row'
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2018-05-24 20:17:45 +00:00
|
|
|
roomTitle: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 18,
|
|
|
|
...sharedStyles.textColorNormal,
|
|
|
|
...sharedStyles.textMedium
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2018-08-31 16:46:33 +00:00
|
|
|
roomTitleRow: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
2018-03-29 17:55:37 +00:00
|
|
|
status: {
|
|
|
|
borderWidth: 4,
|
|
|
|
bottom: -4,
|
|
|
|
right: -4
|
|
|
|
},
|
|
|
|
itemLabel: {
|
2019-03-29 19:36:07 +00:00
|
|
|
marginBottom: 10,
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textColorNormal,
|
|
|
|
...sharedStyles.textMedium
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
itemContent: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textColorDescription,
|
|
|
|
...sharedStyles.textRegular
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
itemContent__empty: {
|
|
|
|
fontStyle: 'italic'
|
|
|
|
},
|
|
|
|
rolesContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
flexWrap: 'wrap'
|
|
|
|
},
|
|
|
|
roleBadge: {
|
2019-03-29 19:36:07 +00:00
|
|
|
padding: 6,
|
|
|
|
backgroundColor: COLOR_BACKGROUND_CONTAINER,
|
2018-03-29 17:55:37 +00:00
|
|
|
borderRadius: 2,
|
2019-03-29 19:36:07 +00:00
|
|
|
marginRight: 6,
|
|
|
|
marginBottom: 6
|
|
|
|
},
|
|
|
|
role: {
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textColorNormal,
|
|
|
|
...sharedStyles.textRegular
|
2018-03-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
});
|