@placetime/corptime-conference 1.0.11 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/react/features/chat/components/native/styles.ts +1 -1
- package/react/features/lobby/components/native/LobbyScreen.tsx +19 -16
- package/react/features/mobile/navigation/components/lobby/components/LobbyNavigationContainer.tsx +1 -1
- package/react/features/prejoin/components/native/styles.ts +4 -0
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ const recipientContainer = {
|
|
|
8
8
|
backgroundColor: BaseTheme.palette.support05,
|
|
9
9
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
10
10
|
flexDirection: 'row',
|
|
11
|
-
|
|
11
|
+
minHeight: 48,
|
|
12
12
|
marginBottom: BaseTheme.spacing[3],
|
|
13
13
|
marginHorizontal: BaseTheme.spacing[3],
|
|
14
14
|
padding: BaseTheme.spacing[2]
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { BackHandler, Text, TextStyle, View, ViewStyle } from 'react-native';
|
|
3
3
|
import { connect } from 'react-redux';
|
|
4
|
+
import { ScrollView } from 'react-native-gesture-handler';
|
|
4
5
|
import { appNavigate } from '../../../app/actions.native';
|
|
5
6
|
|
|
6
7
|
import { IReduxState } from '../../../app/types';
|
|
@@ -91,7 +92,7 @@ class LobbyScreen extends AbstractLobbyScreen<IProps> {
|
|
|
91
92
|
const isTablet = Math.min(_clientWidth, _clientHeight) >= 768;
|
|
92
93
|
|
|
93
94
|
let contentContainerStyles = preJoinStyles.lobbyContentContainer;
|
|
94
|
-
let largeVideoContainerStyles = preJoinStyles.
|
|
95
|
+
let largeVideoContainerStyles = preJoinStyles.lobbyLargeVideoContainer;
|
|
95
96
|
|
|
96
97
|
if (isTablet && _aspectRatio === ASPECT_RATIO_WIDE) {
|
|
97
98
|
// @ts-ignore
|
|
@@ -105,23 +106,25 @@ class LobbyScreen extends AbstractLobbyScreen<IProps> {
|
|
|
105
106
|
addBottomPadding = { false }
|
|
106
107
|
safeAreaInsets = { [ 'right' ] }
|
|
107
108
|
style = { preJoinStyles.contentWrapper }>
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
<View style = {
|
|
111
|
-
<View style = { preJoinStyles.
|
|
112
|
-
<
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
109
|
+
<ScrollView style={{ flex: 1 }}>
|
|
110
|
+
<BrandingImageBackground />
|
|
111
|
+
<View style = { largeVideoContainerStyles as ViewStyle }>
|
|
112
|
+
<View style = { preJoinStyles.conferenceInfo as ViewStyle }>
|
|
113
|
+
<View style = { preJoinStyles.displayRoomNameBackdrop }>
|
|
114
|
+
<Text
|
|
115
|
+
numberOfLines = { 1 }
|
|
116
|
+
style = { preJoinStyles.preJoinRoomName }>
|
|
117
|
+
{ _roomName }
|
|
118
|
+
</Text>
|
|
119
|
+
</View>
|
|
117
120
|
</View>
|
|
121
|
+
<LargeVideo />
|
|
118
122
|
</View>
|
|
119
|
-
<
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
</View>
|
|
123
|
+
<View style = { contentContainerStyles as ViewStyle }>
|
|
124
|
+
{ this._renderToolbarButtons() }
|
|
125
|
+
{ this._renderContent() }
|
|
126
|
+
</View>
|
|
127
|
+
</ScrollView>
|
|
125
128
|
</JitsiScreen>
|
|
126
129
|
);
|
|
127
130
|
}
|
package/react/features/mobile/navigation/components/lobby/components/LobbyNavigationContainer.tsx
CHANGED
|
@@ -42,7 +42,7 @@ const LobbyNavigationContainer = () => {
|
|
|
42
42
|
&& <LobbyStack.Screen
|
|
43
43
|
component = { LobbyChatScreen }
|
|
44
44
|
name = { screen.lobby.chat }
|
|
45
|
-
options = { lobbyChatScreenOptions } />
|
|
45
|
+
options = {{ ...lobbyChatScreenOptions, title: i18next.t('lobby.chat') }} />
|
|
46
46
|
}
|
|
47
47
|
</LobbyStack.Navigator>
|
|
48
48
|
</NavigationContainer>
|