Reputation: 51
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
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