image_processing_plugin 0.0.1 copy "image_processing_plugin: ^0.0.1" to clipboard
image_processing_plugin: ^0.0.1 copied to clipboard

A Flutter plugin for image processing tasks including face detection, brightness checks, and photo filters.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  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 MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              const Text('Image Processing Plugin Example'),
              const SizedBox(height: 16),
              // Corrected line: Directly using the class name as a string literal
              const Text(
                'Plugin class ImageProcessingPlugin is available.',
                textAlign: TextAlign.center,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
150
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for image processing tasks including face detection, brightness checks, and photo filters.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, google_mlkit_face_detection, image, plugin_platform_interface

More

Packages that depend on image_processing_plugin

Packages that implement image_processing_plugin