complycube 1.0.4 copy "complycube: ^1.0.4" to clipboard
complycube: ^1.0.4 copied to clipboard

The official Flutter SDK for integrating ComplyCube's Identity Verification UI into your mobile app.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'view_models/home_view_model.dart';
import 'views/home_screen.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(
    ChangeNotifierProvider(
      create: (_) => HomeViewModel(),
      child: const MyApp(),
    ),
  );
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'ComplyCube Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const HomeScreen(),
    );
  }
}
2
likes
140
points
264
downloads

Documentation

API reference

Publisher

verified publishercomplycube.com

Weekly Downloads

The official Flutter SDK for integrating ComplyCube's Identity Verification UI into your mobile app.

Homepage

License

MIT (license)

Dependencies

flutter

More

Packages that depend on complycube

Packages that implement complycube