fix group images
This commit is contained in:
@@ -46,9 +46,16 @@ class GroupImage extends StatelessWidget {
|
|||||||
.take(2)
|
.take(2)
|
||||||
.map((url) => Flexible(
|
.map((url) => Flexible(
|
||||||
fit: FlexFit.tight,
|
fit: FlexFit.tight,
|
||||||
child: CachedNetworkImage(
|
child: FittedBox(
|
||||||
imageUrl: url,
|
|
||||||
fit: BoxFit.cover,
|
fit: BoxFit.cover,
|
||||||
|
clipBehavior: Clip.antiAlias,
|
||||||
|
child: Transform.scale(
|
||||||
|
scale: 1.2,
|
||||||
|
child: CachedNetworkImage(
|
||||||
|
imageUrl: url,
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
))
|
))
|
||||||
.toList(),
|
.toList(),
|
||||||
@@ -64,9 +71,16 @@ class GroupImage extends StatelessWidget {
|
|||||||
.skip(2)
|
.skip(2)
|
||||||
.map((url) => Flexible(
|
.map((url) => Flexible(
|
||||||
fit: FlexFit.tight,
|
fit: FlexFit.tight,
|
||||||
child: CachedNetworkImage(
|
child: FittedBox(
|
||||||
imageUrl: url,
|
|
||||||
fit: BoxFit.cover,
|
fit: BoxFit.cover,
|
||||||
|
clipBehavior: Clip.antiAlias,
|
||||||
|
child: Transform.scale(
|
||||||
|
scale: 1.2,
|
||||||
|
child: CachedNetworkImage(
|
||||||
|
imageUrl: url,
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
))
|
))
|
||||||
.toList(),
|
.toList(),
|
||||||
|
|||||||
Reference in New Issue
Block a user