hcaptcha_flutter

Last updated:

0 purchases

hcaptcha_flutter Image
hcaptcha_flutter Images
Add to Cart

Description:

hcaptcha flutter

HCaptcha for Flutter #

Getting Started #
HCaptchaFlutter.setMethodCallHandler((MethodCall call) async {
if (kDebugMode) {
print('method: ${call.method}, arguments: ${call.arguments}');
}

if (call.method == 'success' && call.arguments != null) {
final res = call.arguments as Map<dynamic, dynamic>;
final token = res['token'] as String?;
}
});
copied to clipboard
await HCaptchaFlutter.show({
'siteKey': 'your site key',
'language': 'en',
});
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.