mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
Fix download asset loading indicator position (#2974)
This commit is contained in:
parent
61e5e65173
commit
f5d9826b12
1 changed files with 6 additions and 2 deletions
|
|
@ -73,8 +73,12 @@ class VideoViewerPage extends HookConsumerWidget {
|
||||||
placeholder: placeholder,
|
placeholder: placeholder,
|
||||||
),
|
),
|
||||||
if (downloadAssetStatus == DownloadAssetStatus.loading)
|
if (downloadAssetStatus == DownloadAssetStatus.loading)
|
||||||
const Center(
|
SizedBox(
|
||||||
child: ImmichLoadingIndicator(),
|
height: MediaQuery.of(context).size.height,
|
||||||
|
width: MediaQuery.of(context).size.width,
|
||||||
|
child: const Center(
|
||||||
|
child: ImmichLoadingIndicator(),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue