How to use ImageBackground to set background image for screen in react-native

The Solution to How to use ImageBackground to set background image for screen in react-native is


You can use "ImageBackground" component on React Native.

<ImageBackground
  source={yourSourceFile}
  style={{width: '100%', height: '100%'}}
> 
    <....yourContent...>
</ImageBackground>

~ Answered on 2017-11-15 20:27:58


Most Viewed Questions: