Home > Enterprise >  Way there is no google Recaptcha package for Flutter apps?
Way there is no google Recaptcha package for Flutter apps?

Time:12-27

I am looking for google recaptcha v2 package with checkbox to implement in my flutter app but there is no single one that offer this feature?? There is already in Android and IOS. is there reason Flutter doesn't have one?

I found several ones but either outdated or not work as expected

CodePudding user response:

There are a few packages available for integrating Google reCAPTCHA v2 with a Flutter app, but it's possible that they may not have the specific feature you're looking for. Here are a few options to consider:

  • flutter_recaptcha_v2: This package provides a Flutter widget for displaying a Google reCAPTCHA v2 checkbox. It has been updated within the past year, so it should be relatively up-to-date.

  • flutter_google_recaptcha: This package also provides a Flutter widget for displaying a Google reCAPTCHA v2 checkbox. It has been updated within the past year as well.

  • flutter_recaptcha: This package provides a Flutter plugin for integrating Google reCAPTCHA v2 with a Flutter app. It has been updated within the past year and should work as expected.

It's possible that there may not be as many options available for integrating Google reCAPTCHA v2 with a Flutter app compared to Android and iOS due to the relative popularity of those platforms compared to Flutter. However, the packages mentioned above should be able to help you integrate Google reCAPTCHA v2 into your Flutter app.

CodePudding user response:

Here try this one this one provides access to all the current captcha used by all the major players: captcha_solver: ^1.0.4

  • Related