import { Platform, BackHandler } from "react-native";
componentWillMount() {
if (Platform.OS === "android") {
BackHandler.addEventListener("back", this.addListtenRequues);
}
}
componentWillUnmount() {
if (Platform.OS === "android") {
BackHandler.removeEventListener("back");
}
}
网友评论