Answers for "React Navigation Initializations"

0

React Navigation Initializations

// Add the following to MainActivity.java

import android.os.Bundle;

@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(null);
}

// On the App.js

import * as React from 'react';
import { NavigationContainer } from '@react-navigation/native';

// making the Navigation Container on the main screen

return (
    <NavigationContainer>{/* Rest of your app code */}</NavigationContainer>
  );
Posted by: Guest on March-09-2022

Browse Popular Code Answers by Language