I've ran the following; yarn add -D @bam.tech/react-native-make yarn add react-native-splash-screen cd ios && pod install I've got an splash screen image; splashscreen.png I've ran; react-native set-splash --path "splashscreen.png" --background "#ffffff" --resize contain And then added; import SplashScreen from 'react-native-splash-screen'; SplashScreen.hide(); But when I run the app in the iPhone simulator, all I get is a blank black screen for a second or two and then into the app. Is there any issues running this in the simulator? Or have I missed a step?
I've ran the following;
yarn add -D @bam.tech/react-native-make
yarn add react-native-splash-screen
cd ios && pod install
I've got an splash screen image;
splashscreen.png
I've ran;
react-native set-splash --path "splashscreen.png" --background "#ffffff" --resize contain
And then added;
import SplashScreen from 'react-native-splash-screen';
SplashScreen.hide();
But when I run the app in the iPhone simulator, all I get is a blank black screen for a second or two and then into the app.
Is there any issues running this in the simulator? Or have I missed a step?