You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If image (DOES NOT EXIST) AND (maxWidth/maxHeight) ARE set, the stream never closes and there is endless waiting for the image. Especially a problem when trying to get images in a FutureBuilder or when doing a retry to get the image again, nothing happens as an image streamlistener is already running.
This is in the context of a CachedNetworkImageProvider.
Removing (maxWidth/maxHeight) solves the issue. Then the stream closes and things work as they should.
The text was updated successfully, but these errors were encountered:
If image (DOES NOT EXIST) AND (maxWidth/maxHeight) ARE set, the stream never closes and there is endless waiting for the image. Especially a problem when trying to get images in a FutureBuilder or when doing a retry to get the image again, nothing happens as an image streamlistener is already running.
This is in the context of a
CachedNetworkImageProvider
.Removing (maxWidth/maxHeight) solves the issue. Then the stream closes and things work as they should.
The text was updated successfully, but these errors were encountered: