Skip to content

Instantly share code, notes, and snippets.

View Paydarsefat's full-sized avatar
🎯
Focusing

Paydarsefat Paydarsefat

🎯
Focusing
View GitHub Profile
@sdiama
sdiama / webview.js
Created May 29, 2019 17:47
React Native: Handle hardware back button @ webview
import React, { Component } from 'react';
import { WebView, BackHandler } from 'react-native';
export default class WebViewMoviezSpace extends Component {
constructor(props) {
super(props);
this.WEBVIEW_REF = React.createRef();
}
componentDidMount() {