Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created June 22, 2022 11:52
Show Gist options
  • Save nbnD/8ff03109159b221d504acca3aea6ab77 to your computer and use it in GitHub Desktop.
Save nbnD/8ff03109159b221d504acca3aea6ab77 to your computer and use it in GitHub Desktop.
Biometric login
import 'package:flutter/material.dart';
import 'login.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const LoginPage(title: 'Biometric Login'),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment