react-brasil / reactconfbr-app

React Conf BR App built with create-react-native-app
81 stars 14 forks source link

Implement navigation #9

Closed heloa-net closed 7 years ago

heloa-net commented 7 years ago

A “single page app” on the web is not an app with a single screen, that would indeed be useless most of the time; rather, it is an app that does not ask the browser to navigate to a new URL for each new screen. Instead, a “single page app” will use its own routing subsystem (eg: react-router) that decouples the screens that are being displayed from the URL bar. Often it will also update the URL bar too, but override the mechanism that will cause the browser to reload the page entirely. The purpose of this is for the experience to be smooth and “app-like”. Expo Routing & Navigation

lucasbento commented 7 years ago

https://gist.github.com/knowbody/ce483742a1761658b767428a0ed35147

A good cheatsheet on ex-navigation.

heloa-net commented 7 years ago

Basic navigation implemented on this commit. Location, Schedule and About can be reached from Home and return to it.

lucasbento commented 7 years ago

I think we can close this, navigation is well set.