forked from caioariede/uber-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.js
More file actions
41 lines (37 loc) · 636 Bytes
/
styles.js
File metadata and controls
41 lines (37 loc) · 636 Bytes
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
import { StyleSheet } from 'react-native'
const styles = StyleSheet.create({
navigator: {
flex: 1,
height: 100,
},
map: {
flex: 1,
},
container: {
flex: 1,
flexDirection: 'column',
position: 'relative',
},
searchBar: {
flex: 1,
flexDirection: 'column',
position: 'absolute',
zIndex: 999,
left: 15,
height: 40,
},
searchInput: {
flex: 1,
backgroundColor: 'white',
borderWidth: 1,
padding: 20,
opacity: .9,
},
setPickupButton: {
backgroundColor: 'black',
color: 'white',
padding: 10,
marginTop: 2,
},
})
export default styles