face_checkin_library 1.0.0+3
face_checkin_library: ^1.0.0+3 copied to clipboard
A Flutter library for face check-in with liveness detection using TensorFlow Lite.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add face_checkin_libraryThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
face_checkin_library: ^1.0.0+3Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:face_checkin_library/common/generated/assets.gen.dart';
import 'package:face_checkin_library/common/generated/fonts.gen.dart';
import 'package:face_checkin_library/config/injection/injection.dart';
import 'package:face_checkin_library/config/injection/local_module.dart';
import 'package:face_checkin_library/config/style/app_colors.dart';
import 'package:face_checkin_library/config/style/app_text.dart';
import 'package:face_checkin_library/config/style/app_themes.dart';
import 'package:face_checkin_library/config/style/text_styles.dart';
import 'package:face_checkin_library/face/camera_frame.dart';
import 'package:face_checkin_library/face/check_fake_gps.dart';
import 'package:face_checkin_library/face/face_check_in_controller.dart';
import 'package:face_checkin_library/face/face_check_in_page.dart';
import 'package:face_checkin_library/face/result_screen.dart';
import 'package:face_checkin_library/face_checkin.dart';
import 'package:face_checkin_library/model/location/attendance_location.dart';
import 'package:face_checkin_library/user/face_recognition_result.dart';
import 'package:face_checkin_library/utils/liveness_helper.dart';
import 'package:face_checkin_library/widget/app_bar.dart';
import 'package:face_checkin_library/widget/button_widget.dart';
import 'package:face_checkin_library/widget/error_popup.dart';