From 6751ec8c12c40f275d5af483044143214d87e518 Mon Sep 17 00:00:00 2001 From: yuandongping Date: Thu, 3 Jul 2025 09:02:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=81=BF=E8=AE=A9=E5=AE=89?= =?UTF-8?q?=E5=85=A8=E5=8C=BA=E5=9F=9F=E6=97=A0=E6=95=88=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yuandongping --- .../navigation/navigationSample/ListExpandSafeArea.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/UI/ArkTsComponentCollection/ComponentCollection/entry/src/main/ets/pages/components/navigation/navigationSample/ListExpandSafeArea.ets b/code/UI/ArkTsComponentCollection/ComponentCollection/entry/src/main/ets/pages/components/navigation/navigationSample/ListExpandSafeArea.ets index 175614a4b3..f4f5037391 100644 --- a/code/UI/ArkTsComponentCollection/ComponentCollection/entry/src/main/ets/pages/components/navigation/navigationSample/ListExpandSafeArea.ets +++ b/code/UI/ArkTsComponentCollection/ComponentCollection/entry/src/main/ets/pages/components/navigation/navigationSample/ListExpandSafeArea.ets @@ -59,10 +59,10 @@ struct ListExpandSafeArea { .height('88%') .width('93%') .padding({ top: '5%' }) - .expandSafeArea(this.expand ? [SafeAreaType.SYSTEM] : [], this.expand ? [SafeAreaEdge.TOP, SafeAreaEdge.BOTTOM] : []) } .height('100%') .width('100%') .backgroundColor($r('app.color.background_shallow_grey')) + .expandSafeArea(this.expand ? [SafeAreaType.SYSTEM] : [], this.expand ? [SafeAreaEdge.TOP, SafeAreaEdge.BOTTOM] : []) } } \ No newline at end of file -- Gitee