Baseflow / Baseflow/flutter_cached_network_image
Sometime it does not display complete image.
- Dominant language
- Dart
- Stars
- 2.6k
- Forks
- 731
- Avg merge
- 3d 9h
- Merged PRs (30d)
- 1
Description
## 🐛 Bug Report
Code:
Image(
image: CachedNetworkImageProvider(
"$demoLink${widget.chatMessage.image}",
),
loadingBuilder: (BuildContext ctx, Widget child,
ImageChunkEvent? loadingProgress) {
if (loadingProgress == null) {
return child;
} else {
/* return SizedBox(
height: 0,
); */
return Center(
heightFactor: 16.0,
widthFactor: 16.0,
child: CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation(
AppColors.originalBlueDrop,
),
),
);
}
},
)
### Expected behavior
### Reproduction steps
### Configuration
**Version:** 1.x
**Platform:**
- Android
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.