eyeblinkdetectface 1.0.4 copy "eyeblinkdetectface: ^1.0.4" to clipboard
eyeblinkdetectface: ^1.0.4 copied to clipboard

RealTime Face Detection using AI Eye Blink and Facial Expression

example/lib/main.dart

import 'package:eyeblinkdetectface_example/index.dart';
import 'package:flutter/services.dart';

void main() async {
  SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
  WidgetsFlutterBinding.ensureInitialized();
  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(),
    );
  }
}