Skip to content

Native (Flutter / Android / iOS)

captcha-pro ships native SDKs for mobile platforms.

Flutter

captcha_pro provides Dart widgets.

yaml
# pubspec.yaml
dependencies:
  captcha_pro: ^2.0.0
dart
import 'package:captcha_pro/captcha_pro.dart';

SliderCaptcha(
  width: 300,
  height: 170,
  onSuccess: () => print('Passed!'),
)

Android

Two flavors are available:

groovy
// build.gradle — traditional View system
implementation 'com.captcha.pro:captcha-sdk:2.0.0'

// build.gradle — Jetpack Compose
implementation 'com.captcha.pro:captcha-compose:2.0.0'
PackageDescription
captcha-sdkNative Kotlin SDK (View system)
captcha-composeJetpack Compose

iOS

CaptchaPro is a Swift SDK supporting both UIKit and SwiftUI.

ruby
# Podfile
pod 'CaptchaPro', '~> 2.0.0'
swift
import CaptchaPro

TIP

Native SDKs run verification in backend mode by default. Point them at your backend server for image generation and verification.

Released under the MIT License.