verisync 0.1.0 copy "verisync: ^0.1.0" to clipboard
verisync: ^0.1.0 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';

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",
              ),
            ],
          ),
        ));
  }
}
5
likes
0
pub points
0%
popularity

Publisher

verified publisherverisync.co

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)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_inappwebview, permission_handler

More

Packages that depend on verisync