Advertisement
muhaiminurabir

image picture from internet flutter

Apr 25th, 2025
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.89 KB | None | 0 0
  1. CachedNetworkImage(
  2.                             height: 150,
  3.                             width: double.infinity,
  4.                             imageUrl: guidanceModel.bannerUrl!,
  5.                             imageBuilder: (context, imageProvider) => Container(
  6.                               decoration: BoxDecoration(
  7.                                 image: DecorationImage(
  8.                                   image: imageProvider,
  9.                                   fit: BoxFit.fill,
  10.                                 ),
  11.                               ),
  12.                             ),
  13.                             placeholder: (context, url) => Center(
  14.                               child: CircularProgressIndicator(),
  15.                             ),
  16.                             errorWidget: (context, url, error) =>
  17.                                 const Icon(Icons.image),
  18.                           ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement