프로그래밍/App 개발
2020. 6. 7.
React-native-webview back button
React 네이티브를 사용했을 때 back button을 누르면 엡이 종료가되는데 이를 방지하기 위해서 아래와 같은 코드가 들어가잇으면 됩니다. webView = { canGoBack: false, ref: null, } onAndroidBackPress = () => { if (this.webView.canGoBack && this.webView.ref) { this.webView.ref.goBack(); return true; } return false; } componentDidMount() { if (Platform.OS === 'android') { BackHandler.addEventListener('hardwareBackPress', this.onAndroidBackPress); } } co..