I have This Image
And I want it to be something like this
Is that possible to do in react native
Wrap it up in View and add background color style.
<View style={styles.imageContainer}>
{...image here}
</View>
and
const styles = StyleSheet.create({
imageContainer: {
backgroundColor: 'blue'
}
})