@danielsaraldi/react-native-blur-view
Version:
A simple blur view in react native
22 lines (17 loc) • 320 B
text/typescript
import { StyleSheet } from 'react-native';
const zIndex = 9999;
const backgroundColor = 'transparent';
export const globalStyles = StyleSheet.create({
container: {
zIndex,
backgroundColor,
},
vibrancy: {
zIndex,
backgroundColor,
},
content: {
zIndex,
position: 'absolute',
},
});