useEffect not called in React Native when back to screen
//Solved : useEffect not called in React Native when back to screen
import React, { useEffect } from "react";
import { useIsFocused } from "@react-navigation/native";
const ExampleScreen = (props) => {
const isFocused = useIsFocused();
useEffect(() => {
console.log("called");
getInitialData();
}, [props, isFocused]);
const getInitialData = async () => {}
return (
......
......
)
}