flutter_cached_network_image
flutter_cached_network_image copied to clipboard
CachedNetworkImage will render twice
Container( constraints:BoxConstraints(maxHeight: 218), child: CachedNetworkImage(imageUrl: imageUrls), )
The position of the image is center when first render,
and then it will to left at the second render(That's right).
How to resolve this problem, thank you.
I am facing the same issue. It starts out centered and then shifts to the alignment as specified after a few milliseconds.
Same issue. I checked by replacing CachedNetworkImage with NetworkImage of Flutter the image is aligned correctly. But when using CachedNetworkImage the image first loads at the center and then shifts to the left. Very disturbing issue and hampering UX.