react-native-material-elements
Version:
React native material elements is a sophisticated UI library crafted to enhance your React Native development workflow. Designed for simplicity and elegance, nex-ui provides a rich collection of components and utilities to effortlessly create polished mob
31 lines (29 loc) • 550 B
text/typescript
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
width: '100%',
position: 'relative',
},
contentContainer: { zIndex: 10 },
overlay: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
zIndex: 2,
backgroundColor: 'rgba(0, 0, 0, .2)',
pointerEvents: 'none',
},
image: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
width: '100%',
height: '100%',
zIndex: 1,
pointerEvents: 'none',
},
});