flutter_tflite_web 3.0.0
flutter_tflite_web: ^3.0.0 copied to clipboard
A Flutter package for identity validation using TensorFlow Lite with document and face detection. Supports DNI capture and selfie validation for web platforms.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add flutter_tflite_webThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
flutter_tflite_web: ^3.0.0Alternatively, 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:flutter_tflite_web/bloc/bloc_observer.dart';
import 'package:flutter_tflite_web/bloc/reconocimiento/reconocimiento_bloc.dart';
import 'package:flutter_tflite_web/bloc/reconocimiento/reconocimiento_event.dart';
import 'package:flutter_tflite_web/bloc/reconocimiento/reconocimiento_func.dart';
import 'package:flutter_tflite_web/bloc/reconocimiento/reconocimiento_state.dart';
import 'package:flutter_tflite_web/global/environment.dart';
import 'package:flutter_tflite_web/main.dart';
import 'package:flutter_tflite_web/private/env.dart';
import 'package:flutter_tflite_web/provider/scrip_js.dart';
import 'package:flutter_tflite_web/view/camara_view.dart';
import 'package:flutter_tflite_web/view/document_detection/camara_para_documento.dart';
import 'package:flutter_tflite_web/view/face_detection/face_detector_view.dart';
import 'package:flutter_tflite_web/view/home_page.dart';
import 'package:flutter_tflite_web/view/inicio_camara.dart';
import 'package:flutter_tflite_web/widget/btn_siguiente.dart';