Advertisement
muhaiminurabir

image picture flutter

Apr 13th, 2025 (edited)
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.93 KB | None | 0 0
  1.  Container(
  2.             clipBehavior: Clip.hardEdge,
  3.             decoration: BoxDecoration(
  4.               shape: BoxShape.rectangle,
  5.               borderRadius: BorderRadius.all(Radius.circular(20)),
  6.             ),
  7.             child: CachedNetworkImage(
  8.               height: 120,
  9.               width: 140,
  10.               imageUrl:
  11.                   "https://grozaar.heizoelscout.com/storage/products/1745483961_59830039",
  12.               placeholder:
  13.                   (context, url) => Image.asset(
  14.                     "assets/images/placeholder_image.png",
  15.                     height: 120,
  16.                     width: 120,
  17.                   ),
  18.               errorWidget:
  19.                   (context, url, error) => Image.asset(
  20.                     "assets/images/placeholder_image.png",
  21.                     height: 120,
  22.                     width: 120,
  23.                   ),
  24.               fit: BoxFit.cover,
  25.             ),
  26.           )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement