Skip to content

Commit

Permalink
fix: on wallet side
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanRns committed May 23, 2024
1 parent c7fc3b8 commit d853d09
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions wallet/lib/pages/events/events_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -160,16 +160,18 @@ class _EventPassViewScreenState extends State<EventPassViewScreen> {
],
),
),
VerticalSpace(20.h),
CachedNetworkImage(
fit: BoxFit.fill,
imageUrl: widget.events.thumbnail,
errorWidget: (a, b, c) => const Center(
child: Icon(
Icons.error_outline,
color: AppColors.kWhite,
)),
placeholder: (context, url) => Shimmer(color: AppColors.kLightGray, child: const SizedBox.expand()),
Container(
margin: EdgeInsets.symmetric(horizontal: 20.w),
child: CachedNetworkImage(
fit: BoxFit.fill,
imageUrl: widget.events.thumbnail,
errorWidget: (a, b, c) => const Center(
child: Icon(
Icons.error_outline,
color: AppColors.kWhite,
)),
// placeholder: (context, url) => Shimmer(color: AppColors.kLightGray, child: const SizedBox.expand()),
),
)
],
),
Expand Down

0 comments on commit d853d09

Please sign in to comment.