telegram_image_cropper 1.0.2 copy "telegram_image_cropper: ^1.0.2" to clipboard
telegram_image_cropper: ^1.0.2 copied to clipboard

A flexible image cropping widget with InteractiveViewer, supporting web, desktop, and mobile.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        backgroundColor: Colors.black,
        appBar: AppBar(
          backgroundColor: Colors.black,
          title: const Text(
            'Image Cropper with InteractiveViewer',
            style: TextStyle(color: Colors.white),
          ),
        ),
        body: const TelegramImageCropper(imagePath: 'images/lorenzomessinaph.jpg'),
      ),
    );
  }
}
1
likes
150
points
6
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A flexible image cropping widget with InteractiveViewer, supporting web, desktop, and mobile.

Repository (GitHub)
View/report issues

Topics

#image-cropper #image-editor #flutter-widget #photo-editing

License

MIT (license)

Dependencies

flutter, image, vector_math, web

More

Packages that depend on telegram_image_cropper