Jaimin Bhikadiya
Jaimin Bhikadiya

Reputation: 51

How to open Image in full screen when we press on list of image in flutter?

Here I actually use GridView.builder for load list of images. I want to add functionality like when I click on any particular image, it load and open in full screen. How is the possible in flutter?

Upvotes: 0

Views: 699

Answers (1)

Afridi Kayal
Afridi Kayal

Reputation: 2295

It may not be the best way but it does the job for me. Hero widget for multiple network images

The idea is to assign unique hero tags to your images and create a widget for the next screen which dynamically assigns hero tag with the value passed through the constructor. Instead of changing tags for your images, change the tag for the hero widget on the next screen.

Upvotes: 1

Related Questions