Untitled
Anonymous
plain_text
03/30/2023 9:04 AM
1.2 KB
14
Indexable
Image.network(
controller.chatList[index].message??"",
height: 70,
loadingBuilder: (BuildContext context, Widget child,
ImageChunkEvent? loadingProgress) {
if (loadingProgress == null) return child;
return Center(
child: CircularProgressIndicator(
value: loadingProgress.expectedTotalBytes != null
? loadingProgress.cumulativeBytesLoaded /
loadingProgress.expectedTotalBytes!
: null,
),
);
},
),Editor is loading...