├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── start-a-new-issue.md └── workflows │ └── github-dependents-info.yml ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── DEPENDENTS.md ├── LICENSE ├── README.md ├── Sample ├── .buckconfig ├── .bundle │ └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── __tests__ │ ├── App-snapshot.tsx │ ├── App-test.tsx │ └── __snapshots__ │ │ └── App-snapshot.tsx.snap ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── reactnativerecaptcha │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reactnativerecaptcha │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── 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 ├── install.sh ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── ReactNativeRecaptcha.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ReactNativeRecaptcha.xcscheme │ ├── ReactNativeRecaptcha │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── ReactNativeRecaptchaTests │ │ ├── Info.plist │ │ └── ReactNativeRecaptchaTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── babel.config.js ├── package.json ├── screenshots ├── invisible.gif └── normal.gif ├── scripts └── publish.js ├── src ├── Recaptcha.tsx ├── get-template.ts ├── index.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/start-a-new-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/.github/ISSUE_TEMPLATE/start-a-new-issue.md -------------------------------------------------------------------------------- /.github/workflows/github-dependents-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/.github/workflows/github-dependents-info.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /DEPENDENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/DEPENDENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/README.md -------------------------------------------------------------------------------- /Sample/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/.buckconfig -------------------------------------------------------------------------------- /Sample/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/.bundle/config -------------------------------------------------------------------------------- /Sample/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/.eslintrc.js -------------------------------------------------------------------------------- /Sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/.gitignore -------------------------------------------------------------------------------- /Sample/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/.prettierrc.js -------------------------------------------------------------------------------- /Sample/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /Sample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Sample/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/App.tsx -------------------------------------------------------------------------------- /Sample/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/Gemfile -------------------------------------------------------------------------------- /Sample/__tests__/App-snapshot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/__tests__/App-snapshot.tsx -------------------------------------------------------------------------------- /Sample/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/__tests__/App-test.tsx -------------------------------------------------------------------------------- /Sample/__tests__/__snapshots__/App-snapshot.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/__tests__/__snapshots__/App-snapshot.tsx.snap -------------------------------------------------------------------------------- /Sample/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/_BUCK -------------------------------------------------------------------------------- /Sample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/build.gradle -------------------------------------------------------------------------------- /Sample/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/build_defs.bzl -------------------------------------------------------------------------------- /Sample/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/debug.keystore -------------------------------------------------------------------------------- /Sample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Sample/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Sample/android/app/src/debug/java/com/reactnativerecaptcha/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/debug/java/com/reactnativerecaptcha/ReactNativeFlipper.java -------------------------------------------------------------------------------- /Sample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Sample/android/app/src/main/java/com/reactnativerecaptcha/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/java/com/reactnativerecaptcha/MainActivity.java -------------------------------------------------------------------------------- /Sample/android/app/src/main/java/com/reactnativerecaptcha/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/java/com/reactnativerecaptcha/MainApplication.java -------------------------------------------------------------------------------- /Sample/android/app/src/main/java/com/reactnativerecaptcha/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/java/com/reactnativerecaptcha/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /Sample/android/app/src/main/java/com/reactnativerecaptcha/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/java/com/reactnativerecaptcha/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /Sample/android/app/src/main/java/com/reactnativerecaptcha/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/java/com/reactnativerecaptcha/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /Sample/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Sample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Sample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/build.gradle -------------------------------------------------------------------------------- /Sample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/gradle.properties -------------------------------------------------------------------------------- /Sample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Sample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/gradlew -------------------------------------------------------------------------------- /Sample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/gradlew.bat -------------------------------------------------------------------------------- /Sample/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/android/settings.gradle -------------------------------------------------------------------------------- /Sample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/app.json -------------------------------------------------------------------------------- /Sample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/babel.config.js -------------------------------------------------------------------------------- /Sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/index.js -------------------------------------------------------------------------------- /Sample/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/install.sh -------------------------------------------------------------------------------- /Sample/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/Podfile -------------------------------------------------------------------------------- /Sample/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/Podfile.lock -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha.xcodeproj/xcshareddata/xcschemes/ReactNativeRecaptcha.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha.xcodeproj/xcshareddata/xcschemes/ReactNativeRecaptcha.xcscheme -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha/AppDelegate.h -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha/AppDelegate.mm -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha/Info.plist -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptcha/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptcha/main.m -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptchaTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptchaTests/Info.plist -------------------------------------------------------------------------------- /Sample/ios/ReactNativeRecaptchaTests/ReactNativeRecaptchaTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/ios/ReactNativeRecaptchaTests/ReactNativeRecaptchaTests.m -------------------------------------------------------------------------------- /Sample/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/jest.config.js -------------------------------------------------------------------------------- /Sample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/metro.config.js -------------------------------------------------------------------------------- /Sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/package.json -------------------------------------------------------------------------------- /Sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/tsconfig.json -------------------------------------------------------------------------------- /Sample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/Sample/yarn.lock -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/invisible.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/screenshots/invisible.gif -------------------------------------------------------------------------------- /screenshots/normal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/screenshots/normal.gif -------------------------------------------------------------------------------- /scripts/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/scripts/publish.js -------------------------------------------------------------------------------- /src/Recaptcha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/src/Recaptcha.tsx -------------------------------------------------------------------------------- /src/get-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/src/get-template.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-recaptcha-that-works/HEAD/yarn.lock --------------------------------------------------------------------------------