2017-02-27 20:37:53 +00:00
|
|
|
import { createStyleSheet } from '../../styles';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The style of the avatar and participant view UI (components).
|
|
|
|
*/
|
|
|
|
export const styles = createStyleSheet({
|
|
|
|
/**
|
|
|
|
* ParticipantView style.
|
|
|
|
*/
|
|
|
|
participantView: {
|
|
|
|
alignItems: 'stretch',
|
2017-04-07 15:26:51 +00:00
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center'
|
2017-02-27 20:37:53 +00:00
|
|
|
}
|
|
|
|
});
|