|
@@ -6,6 +6,7 @@ import { Text, View } from 'react-native';
|
6
|
6
|
import { getConferenceName } from '../../../base/conference';
|
7
|
7
|
import { getFeatureFlag, CONFERENCE_TIMER_ENABLED, MEETING_NAME_ENABLED } from '../../../base/flags';
|
8
|
8
|
import { connect } from '../../../base/redux';
|
|
9
|
+import InviteButton from '../../../invite/components/add-people-dialog/native/InviteButton';
|
9
|
10
|
import { PictureInPictureButton } from '../../../mobile/picture-in-picture';
|
10
|
11
|
import { isToolboxVisible } from '../../../toolbox/functions.native';
|
11
|
12
|
import ConferenceTimer from '../ConferenceTimer';
|
|
@@ -54,8 +55,7 @@ const NavigationBar = (props: Props) => {
|
54
|
55
|
pointerEvents = 'box-none'
|
55
|
56
|
style = { styles.navBarWrapper }>
|
56
|
57
|
<View style = { styles.pipButtonContainer }>
|
57
|
|
- <PictureInPictureButton
|
58
|
|
- styles = { styles.pipButton } />
|
|
58
|
+ <PictureInPictureButton styles = { styles.pipButton } />
|
59
|
59
|
</View>
|
60
|
60
|
<View
|
61
|
61
|
pointerEvents = 'box-none'
|
|
@@ -78,6 +78,9 @@ const NavigationBar = (props: Props) => {
|
78
|
78
|
}
|
79
|
79
|
<Labels />
|
80
|
80
|
</View>
|
|
81
|
+ <View style = { styles.inviteButtonContainer }>
|
|
82
|
+ <InviteButton styles = { styles.inviteButton } />
|
|
83
|
+ </View>
|
81
|
84
|
</View>
|
82
|
85
|
);
|
83
|
86
|
};
|