gabrielpatricksouza / image_network

MIT License
12 stars 13 forks source link

Fetching mulitple network images #11

Open vezer1993 opened 2 years ago

vezer1993 commented 2 years ago

Hi,

I was just wondering if you are aware of this, or I am doing something wrong. I have to load 13 images for my page, but for some reason after 7 it stops getting the images this is my code:

ImageNetwork( image: widget.yachts[index].image.toString(), height: imageHeight, width: imageWidth, borderRadius: BorderRadius.circular(10), fullScreen: false, curve: Curves.easeIn, duration: 1500, onLoading: SizedBox(), imageCache: CachedNetworkImageProvider(widget.yachts[index].image.toString()) ),

image

weijingtai commented 2 years ago

same issue in web canvaski

I make my "Card" transparent I found them

Snipaste_2022-08-22_00-58-05

Mohammad-Abureesh commented 1 year ago

Same issue ?

Mohammad-Abureesh commented 1 year ago

Hi,

I was just wondering if you are aware of this, or I am doing something wrong. I have to load 13 images for my page, but for some reason after 7 it stops getting the images this is my code:

ImageNetwork( image: widget.yachts[index].image.toString(), height: imageHeight, width: imageWidth, borderRadius: BorderRadius.circular(10), fullScreen: false, curve: Curves.easeIn, duration: 1500, onLoading: SizedBox(), imageCache: CachedNetworkImageProvider(widget.yachts[index].image.toString()) ),

image

do you find any solution ?

vezer1993 commented 1 year ago

Hi, it's been a while ago, but unfortunately no. If i remember correctly you can't fix it because underneath the ImageNetwork it uses html.. and currently you can only load like 7 html elements or something like that while using canvaskit renderer.. if you are able to use --web-renderer html... and it will work with native components.