Display images on full page with all zoomin zoomout functions
Features
gallery slides functionality zoomin,zoomout,pinch zoomin,pinch zoomout,double tap zoomin-zoomout
Getting started
To start using this package, add gallery_zoom_slides dependency to your pubspec.yaml
gallery_zoom_slides: "<latest_release>"
Usage
["https://images.pexels.com/photos/60597/dahlia-red-blossom-bloom-60597.jpeg",
"https://www.gardeningknowhow.com/wp-content/uploads/2019/09/flower-color-400x391.jpg"
];
InkWell(
onTap: (){
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => GalleryZoomSlides(
arrayImages,0)));
},
child:Container(
padding:EdgeInsets.all(10.0),
color: Colors.grey,
child: Text("View Gallery",style: TextStyle(
color: Colors.white
),),
)
),
Additional information
you can also set which index of image want to display initallly.