├── .env.template ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── stytchreactnativeexample │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── .xcode.env ├── Config.xcconfig ├── Podfile ├── Podfile.lock ├── StytchReactNativeExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── StytchReactNativeExample.xcscheme ├── StytchReactNativeExample.xcworkspace │ └── contents.xcworkspacedata └── StytchReactNativeExample │ ├── AppDelegate.swift │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── PrivacyInfo.xcprivacy ├── jest.config.js ├── metro.config.js ├── package.json ├── tsconfig.json └── types └── react-native-config.d.ts /.env.template: -------------------------------------------------------------------------------- 1 | # Copy this from your Stytch Dashboard 2 | STYTCH_PUBLIC_TOKEN=public-token-... -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/stytchreactnativeexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/java/com/stytchreactnativeexample/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/stytchreactnativeexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/java/com/stytchreactnativeexample/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/Config.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/StytchReactNativeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/StytchReactNativeExample.xcodeproj/xcshareddata/xcschemes/StytchReactNativeExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample.xcodeproj/xcshareddata/xcschemes/StytchReactNativeExample.xcscheme -------------------------------------------------------------------------------- /ios/StytchReactNativeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/StytchReactNativeExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample/AppDelegate.swift -------------------------------------------------------------------------------- /ios/StytchReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/StytchReactNativeExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/StytchReactNativeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample/Info.plist -------------------------------------------------------------------------------- /ios/StytchReactNativeExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/StytchReactNativeExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/ios/StytchReactNativeExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/react-native-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stytchauth/stytch-react-native-example/HEAD/types/react-native-config.d.ts --------------------------------------------------------------------------------