Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.