mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 22:37:46 +00:00
This event is the event host applications need to listen to for knowing when to dispose the SDK from now on. Since the introduction of breakout rooms it's possible that we navigate from one meeting to another, so there will be several conference join / terminations. In addition, local track destruction is now moved to SET_ROOM when there is no room, aka, we are going back to the welcome page or to the black page.
44 lines
966 B
JavaScript
44 lines
966 B
JavaScript
// @flow
|
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import { BoxModel, ColorPalette } from '../../../base/styles';
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
|
|
|
export const TEXT_COLOR = BaseTheme.palette.text01;
|
|
|
|
/**
|
|
* The React {@code Component} styles of the overlay feature.
|
|
*/
|
|
export default {
|
|
connectIndicator: {
|
|
margin: BoxModel.margin
|
|
},
|
|
|
|
/**
|
|
* Style for a backdrop overlay covering the screen the the overlay is
|
|
* rendered.
|
|
*/
|
|
container: {
|
|
...StyleSheet.absoluteFillObject,
|
|
backgroundColor: ColorPalette.black
|
|
},
|
|
|
|
loadingOverlayText: {
|
|
color: TEXT_COLOR
|
|
},
|
|
|
|
loadingOverlayWrapper: {
|
|
...StyleSheet.absoluteFillObject,
|
|
alignItems: 'center',
|
|
backgroundColor: BaseTheme.palette.uiBackground,
|
|
flex: 1,
|
|
flexDirection: 'column',
|
|
justifyContent: 'center'
|
|
},
|
|
|
|
safeContainer: {
|
|
flex: 1
|
|
}
|
|
};
|