mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05:00
Merge branch 'main' of github.com:immich-app/immich
This commit is contained in:
commit
25ccc5660d
1 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
import 'package:immich_mobile/shared/providers/api.provider.dart';
|
||||
import 'package:openapi/api.dart';
|
||||
|
@ -39,7 +39,9 @@ class ShareService {
|
|||
return tempFile.path;
|
||||
});
|
||||
|
||||
Share.shareFiles(await Future.wait(downloadedFilePaths));
|
||||
Share.shareFiles(
|
||||
await Future.wait(downloadedFilePaths),
|
||||
sharePositionOrigin: Rect.zero,
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue