React-Native-特定页面上的Backbutton处理程序

问题描述 投票:0回答:1

我想使用react native在特定页面上禁用android后退按钮处理程序

react-native react-native-android back-button
1个回答
0
投票

禁用Android设备后退按钮

它将处理Back Press,

import { BackHandler } from 'react-native';

    constructor(props) {
        super(props)
    }

    componentWillMount() {
        BackHandler.addEventListener('hardwareBackPress', this.handleBackButtonClick);
    }

    componentWillUnmount() {
        BackHandler.removeEventListener('hardwareBackPress', this.handleBackButtonClick);
    }

    handleBackButtonClick = () => {
        this.props.navigation.goBack(null);
        return true;
    };
© www.soinside.com 2019 - 2024. All rights reserved.