2022年7月3日星期日

Flutter image loading builder example

 Image.network(

/* Other code */ loadingBuilder: (context, child, loadingProgress) { if (loadingProgress == null) return child; return const Center(child: Text('Loading...')); // You can use LinearProgressIndicator, CircularProgressIndicator, or a GIF instead }, ),

沒有留言:

發佈留言