Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-01-19 12:48:24 +08:00
parent 397f887b91
commit 33278a74b2
17 changed files with 79 additions and 101 deletions

View File

@@ -99,7 +99,7 @@ abstract final class Utils {
static Future<Rect?> get sharePositionOrigin async {
if (await isIpad) {
final size = Get.size;
return Rect.fromLTWH(0, 0, size.width, size.height / 2);
return Rect.fromLTRB(0, 0, size.width, size.height / 2);
}
return null;
}