2022-06-16 09:49:07 +00:00
|
|
|
import BaseTheme from '../../base/ui/components/BaseTheme.native';
|
|
|
|
|
|
|
|
|
2022-07-07 12:29:18 +00:00
|
|
|
export default {
|
2022-11-22 19:50:16 +00:00
|
|
|
|
2022-10-12 12:43:11 +00:00
|
|
|
joinButton: {
|
2022-11-22 16:13:36 +00:00
|
|
|
marginTop: BaseTheme.spacing[3],
|
|
|
|
width: 352
|
2022-11-08 17:14:29 +00:00
|
|
|
},
|
|
|
|
|
2022-06-16 09:49:07 +00:00
|
|
|
buttonStylesBorderless: {
|
|
|
|
iconStyle: {
|
|
|
|
color: BaseTheme.palette.icon01,
|
|
|
|
fontSize: 24
|
|
|
|
},
|
|
|
|
style: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'center',
|
2022-10-12 12:43:11 +00:00
|
|
|
margin: BaseTheme.spacing[3],
|
2022-06-16 09:49:07 +00:00
|
|
|
height: 24,
|
|
|
|
width: 24
|
2022-06-21 14:16:38 +00:00
|
|
|
},
|
|
|
|
underlayColor: 'transparent'
|
2022-06-16 09:49:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
contentWrapper: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
|
|
|
|
contentWrapperWide: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row'
|
|
|
|
},
|
|
|
|
|
|
|
|
largeVideoContainer: {
|
2022-11-08 17:14:29 +00:00
|
|
|
height: '60%'
|
2022-06-16 09:49:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
largeVideoContainerWide: {
|
|
|
|
height: '100%',
|
|
|
|
marginRight: 'auto',
|
|
|
|
position: 'absolute',
|
2022-11-22 16:13:36 +00:00
|
|
|
width: '50%'
|
2022-06-16 09:49:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
contentContainer: {
|
2022-11-22 16:13:36 +00:00
|
|
|
alignItems: 'center',
|
2022-11-08 17:14:29 +00:00
|
|
|
backgroundColor: BaseTheme.palette.uiBackground,
|
|
|
|
bottom: 0,
|
2022-06-16 09:49:07 +00:00
|
|
|
display: 'flex',
|
2022-11-22 16:13:36 +00:00
|
|
|
height: 316,
|
2022-06-16 09:49:07 +00:00
|
|
|
justifyContent: 'center',
|
2022-11-08 17:14:29 +00:00
|
|
|
position: 'absolute',
|
2022-11-22 16:13:36 +00:00
|
|
|
width: '100%',
|
2022-11-08 17:14:29 +00:00
|
|
|
zIndex: 1
|
2022-06-16 09:49:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
contentContainerWide: {
|
2022-11-22 16:13:36 +00:00
|
|
|
alignItems: 'center',
|
2022-06-16 09:49:07 +00:00
|
|
|
height: '100%',
|
|
|
|
justifyContent: 'center',
|
2022-11-22 16:13:36 +00:00
|
|
|
left: '50%',
|
2022-10-12 12:43:11 +00:00
|
|
|
padding: BaseTheme.spacing[3],
|
2022-06-16 09:49:07 +00:00
|
|
|
position: 'absolute',
|
2022-11-22 16:13:36 +00:00
|
|
|
width: '50%'
|
2022-06-16 09:49:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
toolboxContainer: {
|
2022-11-22 16:13:36 +00:00
|
|
|
alignItems: 'center',
|
2022-11-08 17:14:29 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui01,
|
|
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
2022-06-16 09:49:07 +00:00
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
2022-11-08 17:14:29 +00:00
|
|
|
height: 60,
|
|
|
|
justifyContent: 'space-between',
|
2022-11-17 16:01:19 +00:00
|
|
|
marginBottom: BaseTheme.spacing[3],
|
2022-11-08 17:14:29 +00:00
|
|
|
paddingHorizontal: BaseTheme.spacing[2],
|
|
|
|
width: 148
|
2022-06-16 09:49:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
formWrapper: {
|
2022-11-22 16:13:36 +00:00
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
2022-06-16 09:49:07 +00:00
|
|
|
},
|
|
|
|
|
2022-11-08 15:46:46 +00:00
|
|
|
customInput: {
|
2022-11-22 16:13:36 +00:00
|
|
|
textAlign: 'center',
|
|
|
|
width: 352
|
2022-11-08 15:46:46 +00:00
|
|
|
},
|
|
|
|
|
2022-10-12 12:43:11 +00:00
|
|
|
preJoinRoomName: {
|
|
|
|
...BaseTheme.typography.heading5,
|
|
|
|
color: BaseTheme.palette.text01,
|
|
|
|
textAlign: 'center'
|
2022-08-24 09:43:28 +00:00
|
|
|
},
|
|
|
|
|
2022-10-12 12:43:11 +00:00
|
|
|
displayRoomNameBackdrop: {
|
|
|
|
alignSelf: 'center',
|
2022-11-08 17:14:29 +00:00
|
|
|
backgroundColor: BaseTheme.palette.uiBackground,
|
|
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
|
|
marginTop: BaseTheme.spacing[3],
|
|
|
|
opacity: 0.7,
|
2022-10-12 12:43:11 +00:00
|
|
|
paddingHorizontal: BaseTheme.spacing[3],
|
|
|
|
paddingVertical: BaseTheme.spacing[1],
|
2022-11-08 17:14:29 +00:00
|
|
|
position: 'absolute',
|
|
|
|
width: 243,
|
|
|
|
zIndex: 1
|
2022-06-16 09:49:07 +00:00
|
|
|
}
|
|
|
|
};
|