eyeblinkdetectface 1.0.3
eyeblinkdetectface: ^1.0.3 copied to clipboard
RealTime Face Detection using Eye Blink, it is a extended implementation of m7liveliness detection
import 'package:eyeblinkdetectface_example/index.dart';
import 'package:flutter/services.dart';
void main() {
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: M7ExpampleScreen(),
);
}
}