728x90
반응형
import { BackHandler } from 'react-native'
componentDidMount() {
BackHandler.addEventListener('hardwareBackPress', this.handleBackPress);
}
componentWillUnmount() {
BackHandler.removeEventListener('hardwareBackPress', this.handleBackButton);
}
handleBackPress = () => {
alert('알림')
return true;
}
componentDidMount() {
BackHandler.addEventListener('hardwareBackPress', this.handleBackPress);
}
componentWillUnmount() {
BackHandler.removeEventListener('hardwareBackPress', this.handleBackButton);
}
handleBackPress = () => {
alert('알림')
return true;
}
728x90
반응형
'React Native' 카테고리의 다른 글
리액트 네이티브 경고창 숨기기 (0) | 2020.02.14 |
---|---|
배열의 아이템 검색후 인덱스 반환 받기 (0) | 2020.02.11 |
React native Flatlist 이미지 캐싱 문제 (0) | 2020.02.04 |
ReactNative 이전 컴포넌트로 돌아왔을때 체크 (0) | 2020.02.04 |
React native 모달( Modal ) (0) | 2020.02.04 |