Navigation

npm i @react-navigation/native

and then in code App.js

import React, { useEffect } from 'react'
import { Text } from 'native-base'
import { NativeBaseProvider } from 'native-base'
import { NavigationContainer } from '@react-navigation/native'

export default function App() {
  return (
    <NavigationContainer>
      <NativeBaseProvider>
        <Text> Hallo World </Text>
      </NativeBaseProvider>
    </NavigationContainer>
  )
}

Last updated

Was this helpful?