1234567891011121314151617181920212223242526272829303132333435 |
- import {
- ColorPalette,
- createStyleSheet,
- fixAndroidViewClipping
- } from '../../base/styles';
-
- /**
- * The style of the conference UI (component).
- */
- export const styles = createStyleSheet({
- /**
- * Avatar style.
- */
- avatar: {
- flex: 1,
- width: '100%'
- },
-
- /**
- * Conference style.
- */
- conference: fixAndroidViewClipping({
- alignSelf: 'stretch',
- backgroundColor: ColorPalette.appBackground,
- flex: 1
- }),
-
- /**
- * ParticipantView style
- */
- participantView: {
- alignItems: 'stretch',
- flex: 1
- }
- });
|