@tkow/react-native-modal
Version:
An enhanced React Native modal
23 lines (21 loc) • 377 B
text/typescript
import {StyleSheet} from 'react-native';
export default StyleSheet.create({
backdrop: {
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
opacity: 0,
backgroundColor: 'black',
},
content: {
flex: 1,
justifyContent: 'center',
},
containerBox: {
zIndex: 2,
opacity: 1,
backgroundColor: 'transparent',
},
});