From 397f875ca661e042e077ae3569be89b61f82a9bd Mon Sep 17 00:00:00 2001 From: yFeii <1486662452@qq.com> Date: Wed, 24 Apr 2024 21:33:24 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E5=BD=93=E4=BC=A0=E5=85=A5?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E4=B8=8B=E6=8B=89/=E4=B8=8A?= =?UTF-8?q?=E6=8B=89=E8=A7=86=E5=9B=BE=E5=AD=98=E5=9C=A8=E5=9B=BA=E5=AE=9A?= =?UTF-8?q?=E9=AB=98=E5=BA=A6=E6=97=B6=EF=BC=8C=E4=BC=9A=E8=B6=85=E5=87=BA?= =?UTF-8?q?stack=20=E9=AB=98=E5=BA=A6=EF=BC=8C=E8=A2=AB=E7=8E=B0=E5=AE=9E?= =?UTF-8?q?=E5=87=BA=E6=9D=A5=EF=BC=8C=E5=AF=BC=E8=87=B4=E8=A7=86=E8=A7=89?= =?UTF-8?q?=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/src/main/ets/components/PullToRefresh/PullToRefresh.ets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/src/main/ets/components/PullToRefresh/PullToRefresh.ets b/library/src/main/ets/components/PullToRefresh/PullToRefresh.ets index db7c006..828685c 100644 --- a/library/src/main/ets/components/PullToRefresh/PullToRefresh.ets +++ b/library/src/main/ets/components/PullToRefresh/PullToRefresh.ets @@ -164,6 +164,7 @@ export struct PullToRefresh { Column() { this.customRefresh() } + .clip(true) .width('100%') .height('100%') } else { @@ -200,6 +201,7 @@ export struct PullToRefresh { Column() { this.customLoad() } + .clip(true) .width('100%') .height('100%') } else { -- Gitee