├── .babelrc ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── package.json └── screens ├── HomeScreen.js └── LoginScreen.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/**/* 2 | .expo/* 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/assets/splash.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/package.json -------------------------------------------------------------------------------- /screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/screens/HomeScreen.js -------------------------------------------------------------------------------- /screens/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathvarun/React-Navigation-2.0-Tutorial/HEAD/screens/LoginScreen.js --------------------------------------------------------------------------------