UNPKG

438 BJavaScriptView Raw
1import { StyleSheet } from 'react-native';
2export default StyleSheet.create({
3 backdrop: {
4 position: 'absolute',
5 top: 0,
6 bottom: 0,
7 left: 0,
8 right: 0,
9 opacity: 0,
10 backgroundColor: 'black',
11 },
12 content: {
13 flex: 1,
14 justifyContent: 'center',
15 },
16 containerBox: {
17 zIndex: 2,
18 opacity: 1,
19 backgroundColor: 'transparent',
20 },
21});