📅  最后修改于: 2022-03-11 15:04:00.008000             🧑  作者: Mango
import { useIsFocused } from '@react-navigation/native';
class Home extends React.Component {
render() {
// Get it from props
const { isFocused } = this.props;
}
}
// Wrap and export
export default function(props) {
const isFocused = useIsFocused();
return ;
}