diff --git a/react/features/mobile/navigation/screenOptions.js b/react/features/mobile/navigation/screenOptions.js index f4ea7666a..815bc690f 100644 --- a/react/features/mobile/navigation/screenOptions.js +++ b/react/features/mobile/navigation/screenOptions.js @@ -199,7 +199,9 @@ export const preJoinScreenOptions = { headerStyle: { backgroundColor: BaseTheme.palette.screen02Header }, - headerTitle: '' + headerTitleStyle: { + color: BaseTheme.palette.text01 + } }; /** diff --git a/react/features/prejoin/components/Prejoin.native.tsx b/react/features/prejoin/components/Prejoin.native.tsx index 00b182c49..bd73b501b 100644 --- a/react/features/prejoin/components/Prejoin.native.tsx +++ b/react/features/prejoin/components/Prejoin.native.tsx @@ -121,7 +121,8 @@ const Prejoin: React.FC = ({ navigation }: PrejoinProps) => { useLayoutEffect(() => { navigation.setOptions({ - headerLeft + headerLeft, + headerTitle: t('prejoin.joinMeeting') }); }, [ navigation ]); @@ -152,18 +153,17 @@ const Prejoin: React.FC = ({ navigation }: PrejoinProps) => { isFocused && + + }> + { roomName } + + } }> - }> - { t('prejoin.joinMeeting') } - - }> - { roomName } - = ({ navigation }: PrejoinProps) => { disabled = { joinButtonDisabled } labelKey = 'prejoin.joinMeeting' onClick = { onJoin } - style = { styles.prejoinButton } + style = { styles.joinButton } type = { PRIMARY } />