reusable_ml_detector 1.0.0 copy "reusable_ml_detector: ^1.0.0" to clipboard
reusable_ml_detector: ^1.0.0 copied to clipboard

A reusable ML image detection widget for Flutter using Google ML Kit. Create multi-domain detectors (pets, plants, food, recycling) with simple configuration.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/domain_menu_screen.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'ML Image Detector - Componente Reusable',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const DomainMenuScreen(),
    );
  }
}
1
likes
140
points
255
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A reusable ML image detection widget for Flutter using Google ML Kit. Create multi-domain detectors (pets, plants, food, recycling) with simple configuration.

Repository (GitHub)

Topics

#machine-learning #ml-kit #image-detection #widget #reusable-components

License

MIT (license)

Dependencies

flutter, flutter_animate, google_mlkit_image_labeling, image_picker, permission_handler

More

Packages that depend on reusable_ml_detector