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
53 lines (43 loc) · 892 Bytes
/
Return.js
File metadata and controls
53 lines (43 loc) · 892 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
45
46
47
48
49
50
51
52
53
import React, {
Component,
StyleSheet,
Dimensions,
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-thin-left'
size={ 30 }
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;