Files
react-native-svg/Example/modal-react-native-web/styles.js
2022-02-21 16:17:37 +01:00

25 lines
394 B
JavaScript

import { StyleSheet } from 'react-native';
export default StyleSheet.create({
baseStyle: {
position: 'fixed',
top: 0,
right: 0,
bottom: 0,
left: 0,
zIndex: 9999,
},
bgTransparent: {
backgroundColor: 'transparent',
},
bgNotTransparent: {
backgroundColor: '#ffffff',
},
hidden: {
display: 'none',
},
visible: {
display: 'flex',
},
});