Reputation: 31
Im using expo react natve to build my app, ViewBlur to use blur on camera page when user need to see loading so he will see the camera blur(change orientation etc.)
the problem is in iOS its looks very good but in android its looks lame (not like a blur more like a backgroundcolor white view with opacity...)
iOS blur:
this is the code:
{isBlur && (
<BlurView
tint="regular"
intensity={100}
experimentalBlurMethod="dimezisBlurView"
style={{
zIndex: 2,
width: '100%',
height: '100%',
position: 'absolute',
}}
/>
)}
Try anything in expo document/every props and still does not help
Upvotes: 1
Views: 580