React Native WebView App not exit on pressing back button
问题 React Native WebView App not exit on pressing back button after setting Go back functionality on back button pressed. I want go back functionality on pressing back button when webview is not on home page and when webview is on home page then exit the app. export default class WebView extends Component { constructor (props) { super(props); this.WEBVIEW_REF = React.createRef(); } componentDidMount() { BackHandler.addEventListener('hardwareBackPress', this.handleBackButton); }