화면이 포커스 될때를 감지 -> react-native useIsFocused()

리액트만패는젊은이·2024년 6월 18일

ReactNative 공부기록

목록 보기
9/12
post-thumbnail

앱을 개발하다 보면 심심치 않게 어떠한 특정 화면에 진입하였을때만 수행되는 요청 또는 응답이 있을것이다. 그렇다면 아래의 훅을 사용하면된다.

import {useIsFocused} from '@react-navigation/native';

const isFocused = useIsFocused();

useEffect(() => {
		// 포커스 되엇을때
    if (isFocused) {
	     function();
    }
  }, [isFocused]);
profile
front-end-developer

0개의 댓글