mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
25 lines
394 B
JavaScript
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',
|
|
},
|
|
});
|