-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.js
More file actions
51 lines (51 loc) · 1.23 KB
/
styles.js
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
43
44
45
46
47
48
49
50
51
import React from 'react';
import { StyleSheet, Dimensions } from 'react-native';
const SCREEN_HEIGHT = Dimensions.get('window').height
const SCREEN_WIDTH = Dimensions.get('window').width
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'stretch',
backgroundColor: '#ededed',
paddingLeft: 20,
paddingRight: 20,
},
innerContainer: {
elevation:1,
backgroundColor:'white',
alignItems:'center',
padding:15,
borderRadius:10
},
button: {
alignSelf: 'stretch',
alignItems: 'center',
padding: 10,
backgroundColor: '#00b9f1',
marginTop: 8,
marginBottom:8,
borderRadius: 5,
},
btntext: {
color: '#fff',
fontSize:20,
},
header: {
alignSelf:'center',
fontSize: 32,
// color: '#fff',
paddingBottom: 10,
marginBottom: 40,
borderBottomColor: '#012F6F',
borderBottomWidth: 1,
},
textinput: {
alignSelf: 'stretch',
height: 40,
marginBottom: 30,
borderBottomColor: '#012F6F',
borderBottomWidth: 1,
},
});
export { styles };