biometric 0.0.9 copy "biometric: ^0.0.9" to clipboard
biometric: ^0.0.9 copied to clipboard

A new flutter plugin project.

example/lib/main.dart

import 'package:biometric_example/login.dart';
import 'package:biometric_example/page.dart';
import 'package:flutter/material.dart';

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

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

class _MyAppState extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      routes: <String, WidgetBuilder> {
        '/page': (BuildContext context) => new Page(),
      },
      home: Login(),
    );
  }
}
2
likes
20
pub points
12%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on biometric