@danielsaraldi/react-native-blur-view
Version:
A simple blur view in react native
27 lines (26 loc) • 434 B
JavaScript
;
import { StyleSheet } from 'react-native';
const position = 'relative';
const zIndex = 10;
export const globalStyles = StyleSheet.create({
container: {
zIndex,
position,
overflow: 'hidden'
},
content: {
zIndex,
position
},
expand: {
flex: 1
},
absoluteFill: {
position: 'absolute',
left: 0,
right: 0,
top: 0,
bottom: 0
}
});
//# sourceMappingURL=global.js.map