mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
26 lines
460 B
JavaScript
26 lines
460 B
JavaScript
/**
|
|
* MIT License
|
|
* Copyright (c) 2017 React Native Community
|
|
* https://github.com/react-native-community/react-native-modal
|
|
*/
|
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
export default StyleSheet.create({
|
|
backdrop: {
|
|
position: 'fixed',
|
|
top: 0,
|
|
bottom: 0,
|
|
left: 0,
|
|
right: 0,
|
|
opacity: 0,
|
|
width: '100%',
|
|
height: '100%',
|
|
backgroundColor: '#000000',
|
|
},
|
|
content: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
},
|
|
});
|