├── .env.example ├── .gitignore ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── social-providers │ ├── apple.png │ ├── facebook.png │ ├── google.png │ └── linkedin.png └── splash-icon.png ├── package.json ├── src ├── app │ ├── (auth) │ │ ├── _layout.tsx │ │ ├── sign-in.tsx │ │ ├── sign-up.tsx │ │ └── verify.tsx │ ├── (protected) │ │ ├── _layout.tsx │ │ └── index.tsx │ ├── _layout.tsx │ └── welcome.tsx └── components │ ├── CustomButton.tsx │ ├── CustomInput.tsx │ └── SignInWith.tsx └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/social-providers/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/social-providers/apple.png -------------------------------------------------------------------------------- /assets/social-providers/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/social-providers/facebook.png -------------------------------------------------------------------------------- /assets/social-providers/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/social-providers/google.png -------------------------------------------------------------------------------- /assets/social-providers/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/social-providers/linkedin.png -------------------------------------------------------------------------------- /assets/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/assets/splash-icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/package.json -------------------------------------------------------------------------------- /src/app/(auth)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/(auth)/_layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/(auth)/sign-in.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/(auth)/sign-up.tsx -------------------------------------------------------------------------------- /src/app/(auth)/verify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/(auth)/verify.tsx -------------------------------------------------------------------------------- /src/app/(protected)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/(protected)/_layout.tsx -------------------------------------------------------------------------------- /src/app/(protected)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/(protected)/index.tsx -------------------------------------------------------------------------------- /src/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/_layout.tsx -------------------------------------------------------------------------------- /src/app/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/app/welcome.tsx -------------------------------------------------------------------------------- /src/components/CustomButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/components/CustomButton.tsx -------------------------------------------------------------------------------- /src/components/CustomInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/components/CustomInput.tsx -------------------------------------------------------------------------------- /src/components/SignInWith.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/src/components/SignInWith.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/ReactNativeAuthentication/HEAD/tsconfig.json --------------------------------------------------------------------------------