verisync 0.1.2 copy "verisync: ^0.1.2" to clipboard
verisync: ^0.1.2 copied to clipboard

Verisync simplifies KYC for clients and customers. It's easy to integrate into Flutter projects and supports IOS, Android, Windows, and Web.

example/lib/main.dart

import 'dart:async';
import 'package:flutter/material.dart';

/// import 'package:verisync/verisync.dart' as [verisync];
/// or import 'package:verisync/verisync.dart';
import 'package:verisync/verisync.dart';

Future main() async {
  runApp(const MaterialApp(home: MyApp()));
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: const Text('Verisync Example'),
        ),
        body: SizedBox(
          width: MediaQuery.of(context).size.width,
          child: const Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              VerisyncButton(
                flowId: "<your flowId>",
                redirectUrl: "your redirectUrl",
                clientId: "your clientId",
              ),
            ],
          ),
        ));
  }
}
6
likes
140
points
51
downloads

Publisher

verified publisherverisync.co

Weekly Downloads

Verisync simplifies KYC for clients and customers. It's easy to integrate into Flutter projects and supports IOS, Android, Windows, and Web.

Homepage
Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_inappwebview, permission_handler

More

Packages that depend on verisync