|
|
|
|
@ -35,13 +35,16 @@ class ActivityEventDetailsCard extends StatelessWidget {
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
CachedNetworkImage(
|
|
|
|
|
imageUrl: model.eventActivity!.detailImageURL!,
|
|
|
|
|
height: 200,
|
|
|
|
|
placeholder: (BuildContext context, String url) => const LinearProgressIndicator(
|
|
|
|
|
value: 0.7,
|
|
|
|
|
minHeight: 200,
|
|
|
|
|
|
|
|
|
|
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
|
|
|
|
|
backgroundColor: Color(0xff196D73),
|
|
|
|
|
).toShimmer(),
|
|
|
|
|
fit: BoxFit.cover,width: double.infinity ,
|
|
|
|
|
fit: BoxFit.contain,width: double.infinity ,
|
|
|
|
|
cacheKey: UniqueKey().toString(),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|