|
|
@ -1,6 +1,7 @@ |
|
|
|
/* eslint-disable lines-around-comment */ |
|
|
|
/* eslint-disable lines-around-comment */ |
|
|
|
|
|
|
|
|
|
|
|
import { useIsFocused } from '@react-navigation/native'; |
|
|
|
import { useIsFocused } from '@react-navigation/native'; |
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
import React, { useCallback, useEffect, useLayoutEffect, useState } from 'react'; |
|
|
|
import React, { useCallback, useEffect, useLayoutEffect, useState } from 'react'; |
|
|
|
import { useTranslation } from 'react-i18next'; |
|
|
|
import { useTranslation } from 'react-i18next'; |
|
|
|
import { |
|
|
|
import { |
|
|
@ -139,9 +140,9 @@ const Prejoin: React.FC<IPrejoinProps> = ({ navigation }: IPrejoinProps) => { |
|
|
|
toolboxContainerStyles = styles.toolboxContainerWide; |
|
|
|
toolboxContainerStyles = styles.toolboxContainerWide; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<JitsiScreen |
|
|
|
<JitsiScreen |
|
|
|
|
|
|
|
addBottomPadding = { false } |
|
|
|
safeAreaInsets = { [ 'left' ] } |
|
|
|
safeAreaInsets = { [ 'left' ] } |
|
|
|
style = { contentWrapperStyles }> |
|
|
|
style = { contentWrapperStyles }> |
|
|
|
<BrandingImageBackground /> |
|
|
|
<BrandingImageBackground /> |
|
|
@ -161,8 +162,10 @@ const Prejoin: React.FC<IPrejoinProps> = ({ navigation }: IPrejoinProps) => { |
|
|
|
<View style = { contentContainerStyles }> |
|
|
|
<View style = { contentContainerStyles }> |
|
|
|
<View style = { toolboxContainerStyles }> |
|
|
|
<View style = { toolboxContainerStyles }> |
|
|
|
<AudioMuteButton |
|
|
|
<AudioMuteButton |
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
styles = { styles.buttonStylesBorderless } /> |
|
|
|
styles = { styles.buttonStylesBorderless } /> |
|
|
|
<VideoMuteButton |
|
|
|
<VideoMuteButton |
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
styles = { styles.buttonStylesBorderless } /> |
|
|
|
styles = { styles.buttonStylesBorderless } /> |
|
|
|
</View> |
|
|
|
</View> |
|
|
|
<View style = { styles.formWrapper as StyleProp<ViewStyle> }> |
|
|
|
<View style = { styles.formWrapper as StyleProp<ViewStyle> }> |
|
|
|