I need to have a background image that repeats horizontally to fill the parent element and takes up 100% of the height (no-repeat).
I have tried setting the image to 'repeat' and height 100% with no luck. Any suggestions how to do this in react-native?
<ImageBackground
source={staticImages.background.image}
imageStyle={{ resizeMode: 'repeat', height: '100%' }}
style={{ flex: 1, width: undefined, height: undefined }}
>
.....Content
<ImageBackground/>