ensure dimensions for memory cards

This commit is contained in:
mertalev
2024-11-17 00:02:22 -05:00
parent aa890c0858
commit 60715059f7
2 changed files with 12 additions and 6 deletions
+10 -6
View File
@@ -68,13 +68,17 @@ class MemoryCard extends StatelessWidget {
} else {
return Hero(
tag: 'memory-${asset.id}',
child: NativeVideoViewerPage(
key: ValueKey(asset.id),
asset: asset,
showControls: false,
image: SizedBox.expand(
child: ImmichImage(
child: SizedBox(
width: context.width,
height: context.height,
child: NativeVideoViewerPage(
key: ValueKey(asset.id),
asset: asset,
showControls: false,
image: ImmichImage(
asset,
width: context.width,
height: context.height,
fit: fit,
),
),