FE/React & RN

[ React-Native ] Navigation

Chars4785 2019. 11. 6. 16:35

In a web browser, you can link to different pages using an anchor (<a>) tag. When the user clicks on a link, the URL is pushed to the browser history stack. When the user presses the back button, the browser pops the item from the top of the history stack, so the active page is now the previously visited page. React Native doesn't have a built-in idea of a global history stack like a web browser does -- this is where React Navigation enters the story.

> 웹 브라우저와 같이 앱도 스택을 갖고 있어서 이동을 편이 해주는