flutter_image_clip 0.1.0 copy "flutter_image_clip: ^0.1.0" to clipboard
flutter_image_clip: ^0.1.0 copied to clipboard

A reusable Flutter image clipping library with a ready-to-use crop editor UI and pure Dart image processing APIs.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_image_clip/flutter_image_clip.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: '图片剪辑',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        useMaterial3: true,
        colorScheme: ColorScheme.fromSeed(seedColor: const Color(0xFF006D77)),
        scaffoldBackgroundColor: const Color(0xFFF5F7F8),
      ),
      home: const ImageClipEditor(),
    );
  }
}
1
likes
0
points
1.11k
downloads

Publisher

unverified uploader

Weekly Downloads

A reusable Flutter image clipping library with a ready-to-use crop editor UI and pure Dart image processing APIs.

Repository (GitHub)
View/report issues

Topics

#image #crop #clipping #editor

License

unknown (license)

Dependencies

flutter, image

More

Packages that depend on flutter_image_clip