background image react native style code example

Example 1: react native background image

return (
  <ImageBackground source={...} style={{width: '100%', height: '100%'}}>
    <Text>Inside</Text>
  </ImageBackground>
);

Example 2: react native backgrunde img

return (
  <ImageBackground source={...} style={{width: '100%', height: '100%'}}>
    <Text>Inside</Text>
  </ImageBackground>
);

Example 3: view background image in react native

<ImageBackground source={require('../design/postsbg1.png')} style={styles.image}>
  ...children tags
</ImageBackground>