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';
|
|
|
|
|
2018-03-29 17:55:37 +00:00
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2019-12-04 16:39:53 +00:00
|
|
|
flex: 1
|
2018-08-01 19:35:06 +00:00
|
|
|
},
|
|
|
|
scroll: {
|
2018-03-29 17:55:37 +00:00
|
|
|
flex: 1,
|
2020-02-14 00:25:42 +00:00
|
|
|
flexDirection: 'column'
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
item: {
|
2020-02-14 00:25:42 +00:00
|
|
|
paddingVertical: 10,
|
|
|
|
paddingHorizontal: 20,
|
2018-03-29 17:55:37 +00:00
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
avatarContainer: {
|
2020-05-08 17:09:36 +00:00
|
|
|
minHeight: 240,
|
2018-03-29 17:55:37 +00:00
|
|
|
flexDirection: 'column',
|
|
|
|
alignItems: 'center',
|
2020-02-14 00:25:42 +00:00
|
|
|
justifyContent: 'center',
|
|
|
|
marginBottom: 20
|
|
|
|
},
|
|
|
|
avatarContainerDirectRoom: {
|
2020-05-08 17:09:36 +00:00
|
|
|
paddingVertical: 16,
|
|
|
|
minHeight: 320
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
avatar: {
|
|
|
|
marginHorizontal: 10
|
|
|
|
},
|
2018-05-24 20:17:45 +00:00
|
|
|
roomTitleContainer: {
|
2018-05-23 13:39:18 +00:00
|
|
|
paddingTop: 20,
|
2020-05-08 17:09:36 +00:00
|
|
|
marginHorizontal: 16,
|
2020-02-14 00:25:42 +00:00
|
|
|
alignItems: 'center'
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2018-05-24 20:17:45 +00:00
|
|
|
roomTitle: {
|
2020-02-14 00:25:42 +00:00
|
|
|
fontSize: 20,
|
2020-05-08 17:09:36 +00:00
|
|
|
...sharedStyles.textAlignCenter,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textMedium
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
2020-02-14 00:25:42 +00:00
|
|
|
roomUsername: {
|
|
|
|
fontSize: 18,
|
2020-05-08 17:09:36 +00:00
|
|
|
...sharedStyles.textAlignCenter,
|
2020-02-14 00:25:42 +00:00
|
|
|
...sharedStyles.textRegular
|
|
|
|
},
|
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.textMedium
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
itemContent: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 14,
|
|
|
|
...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,
|
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.textRegular
|
2020-02-14 00:25:42 +00:00
|
|
|
},
|
|
|
|
roomButtonsContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
paddingTop: 30
|
|
|
|
},
|
|
|
|
roomButton: {
|
|
|
|
alignItems: 'center',
|
|
|
|
paddingHorizontal: 20,
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
|
|
|
roomButtonText: {
|
|
|
|
marginTop: 5
|
2018-03-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
});
|