mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 16:07:50 +00:00
The files styles.js are used (pretty much) on React Native only and each of them exports 1 name. Export it as default to cut down on source code.
31 lines
699 B
JavaScript
31 lines
699 B
JavaScript
import { ColorPalette, createStyleSheet } from '../../base/styles';
|
|
|
|
export default createStyleSheet({
|
|
/**
|
|
* The style of the avatar of the participant displayed in largeVideo. It's
|
|
* an addition to the default style of Avatar.
|
|
*/
|
|
avatar: {
|
|
alignSelf: 'center',
|
|
borderRadius: 100,
|
|
flex: 0,
|
|
height: 200,
|
|
width: 200
|
|
},
|
|
|
|
/**
|
|
* Large video container style.
|
|
*/
|
|
largeVideo: {
|
|
alignItems: 'stretch',
|
|
backgroundColor: ColorPalette.appBackground,
|
|
bottom: 0,
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
left: 0,
|
|
position: 'absolute',
|
|
right: 0,
|
|
top: 0
|
|
}
|
|
});
|