From 4c51e36dd4c8040d7995ec66fcbddae6a0b0b3dd Mon Sep 17 00:00:00 2001 From: zhan-linlin <17301907374@163.com> Date: Tue, 12 Dec 2023 10:26:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AF=E6=BB=9A=E5=8A=A8=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=9A=90=E8=97=8F=E5=8F=B3=E4=BE=A7=E6=BB=9A?= =?UTF-8?q?=E5=8A=A8=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/flutter/lib/src/widgets/scroll_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/widgets/scroll_view.dart b/packages/flutter/lib/src/widgets/scroll_view.dart index 1c94377d57..2f73a8f754 100644 --- a/packages/flutter/lib/src/widgets/scroll_view.dart +++ b/packages/flutter/lib/src/widgets/scroll_view.dart @@ -419,7 +419,7 @@ abstract class ScrollView extends StatelessWidget { axisDirection: axisDirection, controller: scrollController, physics: physics, - scrollBehavior: scrollBehavior, + scrollBehavior: ScrollConfiguration.of(context).copyWith(scrollbars:false), semanticChildCount: semanticChildCount, restorationId: restorationId, viewportBuilder: (BuildContext context, ViewportOffset offset) { -- Gitee