tflite_flutter_custom 1.0.1 copy "tflite_flutter_custom: ^1.0.1" to clipboard
tflite_flutter_custom: ^1.0.1 copied to clipboard

TensorFlow Lite Flutter plugin provides an easy, flexible, and fast Dart API to integrate TFLite models in flutter apps across mobile and desktop platforms.

tflite_flutter_custom #

A drop-in alternative to tflite_flutter, made easier. tflite_flutter_custom automatically includes all required native TensorFlow Lite libraries for Android, iOS, macOS, Windows, and Linux.
No manual setup or handling of native libraries required.

Why this fork? #

tflite_flutter is an excellent library, but it requires developers to manually include platform-specific native binaries.
This fork removes that friction by bundling everything inside the package.

No more copying .so, .dll, or .dylib files
Works out of the box on all supported platforms
Same API as tflite_flutter — fully compatible

Installation #

dependencies:
  tflite_flutter_custom: ^1.0.0

Usage #

The API is identical to tflite_flutter, so you can follow their documentation directly. For example:

import 'package:tflite_flutter_custom/tflite_flutter_custom.dart';

void main() async {
  final interpreter = await Interpreter.fromAsset('model.tflite');
  print('Model loaded successfully!');
}

Platform Support #

  • ✅ Android
  • ✅ iOS
  • ✅ macOS
  • ✅ Windows
  • ✅ Linux

All required native binaries are automatically included in the build.

Notes #

  • You don’t need to add any TensorFlow Lite libraries manually.
  • The plugin uses the same bindings as tflite_flutter under the hood.
  • Perfect for Flutter plugin authors who want seamless TFLite integration without setup complexity.

Credits #

This project is based on tflite_flutter by the TensorFlow team and contributors. All credit for the original bindings goes to them.

1
likes
0
points
113
downloads

Publisher

verified publisherhugocornellier.com

Weekly Downloads

TensorFlow Lite Flutter plugin provides an easy, flexible, and fast Dart API to integrate TFLite models in flutter apps across mobile and desktop platforms.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

ffi, flutter, path, plugin_platform_interface, quiver

More

Packages that depend on tflite_flutter_custom

Packages that implement tflite_flutter_custom