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

A smooth pinch-to-zoom & drag image widget that snaps back with overlay for buttery performance.

draggable_image #

A Flutter widget for dragging & pinch-to-zoom images with a smooth snap-back animation using Overlay.

Quick Start #

import 'package:draggable_image/draggable_image.dart';

class Demo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: DraggableImage.network(
        'https://picsum.photos/800',
        imageWidth: 260,
        imageHeight: 180,
        minScale: 0.6,
        maxScale: 3.0,
      ),
    );
  }
}
1
likes
0
points
49
downloads

Publisher

verified publisherfakduai.com

Weekly Downloads

A smooth pinch-to-zoom & drag image widget that snaps back with overlay for buttery performance.

Repository (GitHub)
View/report issues

Topics

#image #zoom #gesture #overlay #widget

License

unknown (license)

Dependencies

cached_network_image, flutter, flutter_hooks, skeletonizer

More

Packages that depend on draggable_image