This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Sphere/app/components/navigation/BackButton.js
2016-02-11 20:45:40 +00:00

42 lines
823 B
JavaScript

import React from 'react-native';
import GlobalStyles from '../../settings/styles';
var {
StyleSheet,
TouchableHighlight,
View,
Text
} = React;
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
},
toolbarButton: {
paddingHorizontal: 15,
},
text: {
color: GlobalStyles.get('CIRCLE_NAVBAR_TEXT')
}
});
export default class NavigationButton extends React.Component {
goBack() {
this.props.nav.pop();
}
render() {
return (
<View style={styles.container}>
<TouchableHighlight
style={styles.toolbarButton}
underlayColor={GlobalStyles.get('CIRCLE_NAVBAR_BG')}
onPress={this.goBack.bind(this)}>
<Text style={styles.text}>&lt;</Text>
</TouchableHighlight>
</View>
);
}
}