├── Basic-Integration ├── App.js ├── App.test.js ├── README.md ├── app.json ├── navigator.js ├── package-lock.json ├── package.json ├── screens │ ├── AuthLoadingScreen.js │ ├── HomeScreen.js │ ├── OtherScreen.js │ └── SignInScreen.js └── yarn.lock ├── Context-API-Integration ├── .babelrc ├── .expo │ ├── packager-info.json │ └── settings.json ├── .vscode │ └── last.sql ├── .watchmanconfig ├── App.js ├── App.test.js ├── Provider.js ├── README.md ├── app.json ├── navigator.js ├── package-lock.json ├── package.json ├── screens │ ├── AuthLoadingScreen.js │ ├── HomeScreen.js │ ├── OtherScreen.js │ └── SignInScreen.js └── yarn.lock ├── README.md └── Redux-Integration ├── .babelrc ├── .expo ├── packager-info.json └── settings.json ├── .vscode └── last.sql ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── actions.js ├── app.json ├── navigator.js ├── package-lock.json ├── package.json ├── reducers.js ├── screens ├── AuthLoadingScreen.js ├── HomeScreen.js ├── OtherScreen.js └── SignInScreen.js ├── store.js └── yarn.lock /Basic-Integration/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/App.js -------------------------------------------------------------------------------- /Basic-Integration/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/App.test.js -------------------------------------------------------------------------------- /Basic-Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/README.md -------------------------------------------------------------------------------- /Basic-Integration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/app.json -------------------------------------------------------------------------------- /Basic-Integration/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/navigator.js -------------------------------------------------------------------------------- /Basic-Integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/package-lock.json -------------------------------------------------------------------------------- /Basic-Integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/package.json -------------------------------------------------------------------------------- /Basic-Integration/screens/AuthLoadingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/screens/AuthLoadingScreen.js -------------------------------------------------------------------------------- /Basic-Integration/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/screens/HomeScreen.js -------------------------------------------------------------------------------- /Basic-Integration/screens/OtherScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/screens/OtherScreen.js -------------------------------------------------------------------------------- /Basic-Integration/screens/SignInScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/screens/SignInScreen.js -------------------------------------------------------------------------------- /Basic-Integration/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Basic-Integration/yarn.lock -------------------------------------------------------------------------------- /Context-API-Integration/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/.babelrc -------------------------------------------------------------------------------- /Context-API-Integration/.expo/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/.expo/packager-info.json -------------------------------------------------------------------------------- /Context-API-Integration/.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/.expo/settings.json -------------------------------------------------------------------------------- /Context-API-Integration/.vscode/last.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Context-API-Integration/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Context-API-Integration/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/App.js -------------------------------------------------------------------------------- /Context-API-Integration/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/App.test.js -------------------------------------------------------------------------------- /Context-API-Integration/Provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/Provider.js -------------------------------------------------------------------------------- /Context-API-Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/README.md -------------------------------------------------------------------------------- /Context-API-Integration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/app.json -------------------------------------------------------------------------------- /Context-API-Integration/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/navigator.js -------------------------------------------------------------------------------- /Context-API-Integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/package-lock.json -------------------------------------------------------------------------------- /Context-API-Integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/package.json -------------------------------------------------------------------------------- /Context-API-Integration/screens/AuthLoadingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/screens/AuthLoadingScreen.js -------------------------------------------------------------------------------- /Context-API-Integration/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/screens/HomeScreen.js -------------------------------------------------------------------------------- /Context-API-Integration/screens/OtherScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/screens/OtherScreen.js -------------------------------------------------------------------------------- /Context-API-Integration/screens/SignInScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/screens/SignInScreen.js -------------------------------------------------------------------------------- /Context-API-Integration/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Context-API-Integration/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/README.md -------------------------------------------------------------------------------- /Redux-Integration/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/.babelrc -------------------------------------------------------------------------------- /Redux-Integration/.expo/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/.expo/packager-info.json -------------------------------------------------------------------------------- /Redux-Integration/.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/.expo/settings.json -------------------------------------------------------------------------------- /Redux-Integration/.vscode/last.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Redux-Integration/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Redux-Integration/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/App.js -------------------------------------------------------------------------------- /Redux-Integration/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/App.test.js -------------------------------------------------------------------------------- /Redux-Integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/README.md -------------------------------------------------------------------------------- /Redux-Integration/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/actions.js -------------------------------------------------------------------------------- /Redux-Integration/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/app.json -------------------------------------------------------------------------------- /Redux-Integration/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/navigator.js -------------------------------------------------------------------------------- /Redux-Integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/package-lock.json -------------------------------------------------------------------------------- /Redux-Integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/package.json -------------------------------------------------------------------------------- /Redux-Integration/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/reducers.js -------------------------------------------------------------------------------- /Redux-Integration/screens/AuthLoadingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/screens/AuthLoadingScreen.js -------------------------------------------------------------------------------- /Redux-Integration/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/screens/HomeScreen.js -------------------------------------------------------------------------------- /Redux-Integration/screens/OtherScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/screens/OtherScreen.js -------------------------------------------------------------------------------- /Redux-Integration/screens/SignInScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/screens/SignInScreen.js -------------------------------------------------------------------------------- /Redux-Integration/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/store.js -------------------------------------------------------------------------------- /Redux-Integration/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux08/react-native-authentication/HEAD/Redux-Integration/yarn.lock --------------------------------------------------------------------------------