verifai 0.0.3 copy "verifai: ^0.0.3" to clipboard
verifai: ^0.0.3 copied to clipboard

Verifai plugin for flutter

example/lib/main.dart

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

import 'package:flutter/services.dart';
import 'package:verifai/verifai.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
    initVerifai();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initVerifai() async {
    await Verifai.lunchVerifai;

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
      ),
    );
  }
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Verifai plugin for flutter

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on verifai