2016-11-08 22:09:07 +00:00
|
|
|
import { ColorPalette, createStyleSheet } from '../../base/styles';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The style of the conference UI (component).
|
|
|
|
*/
|
|
|
|
export const styles = createStyleSheet({
|
|
|
|
/**
|
|
|
|
* Avatar style.
|
|
|
|
*/
|
|
|
|
avatar: {
|
|
|
|
flex: 1,
|
|
|
|
width: '100%'
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Conference style.
|
|
|
|
*/
|
|
|
|
conference: {
|
|
|
|
alignSelf: 'stretch',
|
2016-11-08 22:09:07 +00:00
|
|
|
backgroundColor: ColorPalette.appBackground,
|
2016-10-05 14:36:59 +00:00
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ParticipantView style
|
|
|
|
*/
|
|
|
|
participantView: {
|
|
|
|
alignItems: 'stretch',
|
|
|
|
flex: 1
|
|
|
|
}
|
|
|
|
});
|