diff --git a/entry/src/main/ets/pages/SplashPage.ets b/entry/src/main/ets/pages/SplashPage.ets index 11b68b8..6b0c1bc 100644 --- a/entry/src/main/ets/pages/SplashPage.ets +++ b/entry/src/main/ets/pages/SplashPage.ets @@ -111,7 +111,9 @@ export struct SplashPage { .width('100%') .height('100%') .justifyContent(FlexAlign.End) - .padding({ bottom: 56 }) + // 横屏(auto_rotation_landscape)下屏幕"高"为短边,过大的底边距会把进度块顶进居中 logo。 + // 以底部为基准只留一小段间距,使进度/文字落在 logo 下方的空白带、贴近底部(系统手势条由安全区自动避让)。 + .padding({ bottom: 24 }) } .width('100%') .height('100%')