is it possible to use mix-blend-mode in RN?
style={{
mixBlendMode: 'overlay'
}}
Got invalid props.style key
If you need to blend images you can try my react-native-image-filter-kit this way:
import { Image } from 'react-native'
import { OverlayBlend } from 'react-native-image-filter-kit'
const imageStyle = { width: 320, height: 320 }
const tahoe = (
<Image
style={imageStyle}
source={{ uri: 'https://una.im/CSSgram/img/tahoe.jpg' }}
resizeMode={'contain'}
/>
)
const cacti = (
<Image
style={imageStyle}
source={{ uri: 'https://una.im/CSSgram/img/cacti.jpg' }}
resizeMode={'contain'}
/>
)
const blended = (
<OverlayBlend
dstImage={tahoe}
srcImage={cacti}
/>
)

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With