Advertisement
This is comment for paste
circle round image flutter
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CircleAvatar(
- radius: 28,
- child: CachedNetworkImage(
- height: 60,
- width: 60,
- imageUrl:
- context
- .watch<CommonProvider>()
- .productDetailsResponse
- ?.data
- ?.relatedItems
- ?.data?[position]
- ?.imageUrl ??
- "",
- placeholder:
- (context, url) => Image.asset(
- "assets/images/placeholder_image.png",
- height: 60,
- width: 60,
- fit: BoxFit.fill,
- scale: 10,
- ),
- errorWidget:
- (context, url, error) => Image.asset(
- "assets/images/placeholder_image.png",
- height: 60,
- width: 60,
- fit: BoxFit.fill,
- scale: 10,
- ),
- fit: BoxFit.cover,
- imageBuilder:
- (context, imageProvider) => CircleAvatar(
- backgroundImage: imageProvider,
- ),
- ),
- ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement