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

A widget makes picture pinch zoom, and return to its initial size and position when released.

Pinch Zoom Image #

A widget that makes picture pinch zoom, Instagram style!

Example one Example two

Installation #

Add this to your pubspec.yml dependencies:

flutter_pinch_zoom_image: "^1.0.0"

How to use #

Add the widget to your app like this (It automatically takes the size of the image you pass to it):

PinchZoomImage(
  image: Image.network('https://i.imgur.com/tKg0XEb.jpg'),
  zoomedBackgroundColor: Color.fromRGBO(240, 240, 240, 1.0),
  hideStatusBarWhileZooming: true,
  onZoomStart: () {
    print('Zoom started');
  },
  onZoomEnd: () {
    print('Zoom finished');
  },
),

The zoomedBackgroundColor is the color that fills the image's space when the use is zooming it and moving it on the screen.

If you want images from internet to be cached for offline use or data saving, you can also use this with the cached_network_image widget:

PinchZoomImage(
  image: CachedNetworkImage(
    imageUrl: 'https://i.imgur.com/tKg0XEb.jpg',
  ),
  zoomedBackgroundColor: Color.fromRGBO(240, 240, 240, 1.0),
  hideStatusBarWhileZooming: true,
),

Enjoy!

6
likes
20
pub points
0%
popularity

Publisher

verified publisherbhaveshsachala.dev

A widget makes picture pinch zoom, and return to its initial size and position when released.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_pinch_zoom