// @flow import { createDrawerNavigator } from '@react-navigation/drawer'; import React from 'react'; import { useTranslation } from 'react-i18next'; import { helpScreenOptions, settingsScreenOptions, termsAndPrivacyScreenOptions, welcomeScreenOptions } from '../../conference/components/native/ConferenceNavigatorScreenOptions'; import { screen } from '../../conference/components/native/routes'; import HelpView from '../components/help/components/HelpView'; import PrivacyView from '../components/privacy/components/PrivacyView'; import SettingsView from '../components/settings/components/SettingsView'; import TermsView from '../components/terms/components/TermsView'; import CustomDrawerContent from './CustomDrawerContent'; import WelcomePage from './WelcomePage.native'; import { drawerContentOptions } from './constants'; import styles from './styles'; const DrawerStack = createDrawerNavigator(); const WelcomePageNavigationContainer = () => { const { t } = useTranslation(); return ( } drawerContentOptions = { drawerContentOptions } drawerStyle = { styles.drawerStyle }> ); }; export default WelcomePageNavigationContainer;