Advertisement
muhaiminurabir
Jun 17th, 2025 (edited)
27
0
Never
This is comment for paste circle round image flutter
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CircleAvatar(
  2. radius: 28,
  3. child: CachedNetworkImage(
  4. height: 60,
  5. width: 60,
  6. imageUrl:
  7. context
  8. .watch<CommonProvider>()
  9. .productDetailsResponse
  10. ?.data
  11. ?.relatedItems
  12. ?.data?[position]
  13. ?.imageUrl ??
  14. "",
  15. placeholder:
  16. (context, url) => Image.asset(
  17. "assets/images/placeholder_image.png",
  18. height: 60,
  19. width: 60,
  20. fit: BoxFit.fill,
  21. scale: 10,
  22. ),
  23. errorWidget:
  24. (context, url, error) => Image.asset(
  25. "assets/images/placeholder_image.png",
  26. height: 60,
  27. width: 60,
  28. fit: BoxFit.fill,
  29. scale: 10,
  30. ),
  31. fit: BoxFit.cover,
  32. imageBuilder:
  33. (context, imageProvider) => CircleAvatar(
  34. backgroundImage: imageProvider,
  35. ),
  36. ),
  37. ),
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement