Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CachedNetworkImage(
- height: 150,
- width: double.infinity,
- imageUrl: guidanceModel.bannerUrl!,
- imageBuilder: (context, imageProvider) => Container(
- decoration: BoxDecoration(
- image: DecorationImage(
- image: imageProvider,
- fit: BoxFit.fill,
- ),
- ),
- ),
- placeholder: (context, url) => Center(
- child: CircularProgressIndicator(),
- ),
- errorWidget: (context, url, error) =>
- const Icon(Icons.image),
- ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement