Home > Software engineering >  How to Add a Splash Screen(Image or gradient color) to a React Native Application
How to Add a Splash Screen(Image or gradient color) to a React Native Application

Time:11-30

I'm new in react native, I need to implement splash screen (image or gradient color) on react native application for IOS and Android. I implement only color and icon, but I want gradient color, but if it not possible I want to upload image. I use react-native-bootsplash.

thank you very much.

CodePudding user response:

This npm package react-native-splash-screen has all the steps to implement a splash screen

CodePudding user response:

You can use <ImageBackground> tag for image or if you want using color then take main <view> and give some style to main <view>

  • Related