image_processing_plugin 0.0.1
image_processing_plugin: ^0.0.1 copied to clipboard
A Flutter plugin for image processing tasks including face detection, brightness checks, and photo filters.
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,
),
],
),
),
),
);
}
}