how to give a background image in react native stylesheet code example
Example: add background image react native
return (
<ImageBackground source={...} style={{width: '100%', height: '100%'}}>
......All Children tags
</ImageBackground>
);
return (
<ImageBackground source={...} style={{width: '100%', height: '100%'}}>
......All Children tags
</ImageBackground>
);