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 ( < ); } }