bluefireteam / photo_view

📸 Easy to use yet very customizable zoomable image widget for Flutter, Photo View provides a gesture sensitive zoomable widget. Photo View is largely used to show interacive images and other stuff such as SVG.
MIT License
1.9k stars 546 forks source link

How can I preload next image? #492

Open niuhuan opened 2 years ago

niuhuan commented 2 years ago

I make a on line gallery with photo_view, and implement loading builder.

My imageProvider can download image and cache to local.

I tried download image to cache early, but photo_view display loading widget before scroll over.

Can I preload next 2 image and previous 1 image ?

Like these code

PhotoViewGallery.build(
preloadNext: 2,
preloadPrevious: 1,
);
ghost commented 2 years ago

I make a on line gallery with photo_view, and implement loading builder.

My imageProvider can download image and cache to local.

I tried download image to cache early, but photo_view display loading widget before scroll over.

Can I preload next 2 image and previous 1 image ?

Like these code

PhotoViewGallery.build(
preloadNext: 2,
preloadPrevious: 1,
);

check #457 xd

clragon commented 2 years ago

you can use precacheImage, which is what I use in my app.