// app. js "реагировать": "16.9.0", "реагировать-нативный": "0.61.5", следовать официальному документу, но показывать пустой экран реагировать как родной
import React from 'react';
import { SafeAreaView, StatusBar, View, Text } from 'react-native';
import { Provider } from 'react-redux';
import configureStore from './App/redux/store/store'
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import AppSplashScreen from './App/screens/splashScreen/SplashScreen';
const Stack = createStackNavigator();
function MyStack() {
return (
<Stack.Navigator>
<Stack.Screen name="Home" component={AppSplashScreen} />
</Stack.Navigator>
);
}
export default class App extends React.Component {
constructor(props) {
super(props)
this.state = {}
}
render() {
return (
<>
<StatusBar barStyle="dark-content" />
<SafeAreaView >
<Provider store={configureStore()} >
<NavigationContainer>
<MyStack />
</NavigationContainer>
</Provider>
</SafeAreaView>
</>
);
}
};
, но замените MyStack на AppSplashScreen, затем отобразите SplashScreen