스크린 간의 이동이 있을 때 새로고침을 실행시키려면 스크린 옵션에 'unmountOnBlur: true' 을 추가해주면 된다.
<Stack1.Navigator screenOptions={{ headerShown: false }}>
<Stack1.Screen name="MyLibrary" component={ MyLibrary } options={{ unmountOnBlur: true }}/>
<Stack1.Screen name="CreateReport" component={ CreateReport } options={{ unmountOnBlur: true }} />
</Stack1.Navigator>
);
위와 같이 작성하면 MyLibrary, CreateReport 스크린에 접속할 때마다 새로고침이 실행된다.