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>
);