-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathstyle.js
42 lines (42 loc) · 873 Bytes
/
style.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { StyleSheet } from 'react-native';
const transparent = 'transparent';
const styles = StyleSheet.create({
activityIndicator: {
flex: 1
},
background: {
alignItems: 'center',
bottom: 0,
justifyContent: 'center',
left: 0,
position: 'absolute',
right: 0,
top: 0
},
container: {
backgroundColor: transparent,
bottom: 0,
flex: 1,
left: 0,
position: 'absolute',
right: 0,
top: 0
},
textContainer: {
alignItems: 'center',
bottom: 0,
flex: 1,
justifyContent: 'center',
left: 0,
position: 'absolute',
right: 0,
top: 0
},
textContent: {
fontSize: 20,
fontWeight: 'bold',
height: 50,
top: 80
}
});
export default styles;