Is there any way to blur a background in react-native without using any external library.
for example, the below code blurs in web versions,
div {
background-color: rgba(28, 28, 28, 0.8);
backdrop-filter: blur(14px);
}
I tried using blurRadius and backdropfilter to but none works.