forked from osdio/noder-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReturn.js
More file actions
44 lines (39 loc) · 969 Bytes
/
Return.js
File metadata and controls
44 lines (39 loc) · 969 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
42
43
44
import React, {Component} from 'react'
import {StyleSheet, View} from 'react-native'
import OverlayButton from './OverlayButton'
import Icon from 'react-native-vector-icons/Ionicons'
const returnSize = 45
class Return extends Component {
_onPress () {
this.props.router && this.props.router.pop && this.props.router.pop()
}
render () {
return (
<OverlayButton
onPress={this._onPress.bind(this)}>
<View style={styles.iconWrapper}>
<Icon
name='ios-arrow-round-back-outline'
size={40}
color='rgba(255,255,255,1)'
style={styles.returnIcon} />
</View>
</OverlayButton>
)
}
}
const styles = StyleSheet.create({
returnIcon: {
flex: 1,
textAlign: 'center'
},
iconWrapper: {
flex: 1,
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
height: returnSize,
width: returnSize
}
})
export default Return