From 503a96541287bab482baa1aab2ade7939e59e60b Mon Sep 17 00:00:00 2001 From: Jacques Doeleman Date: Tue, 11 Oct 2022 13:37:57 +0200 Subject: [PATCH] Changed the scrollphysics --- lib/src/form.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/form.dart b/lib/src/form.dart index 2eb68fc..5ad3ff1 100644 --- a/lib/src/form.dart +++ b/lib/src/form.dart @@ -239,6 +239,7 @@ class _FlutterFormState extends ConsumerState { child: fs.FormState( formController: _formController.getFormPageControllers()[i], child: CustomScrollView( + physics: const ClampingScrollPhysics(), slivers: [ SliverFillRemaining( hasScrollBody: false, @@ -256,6 +257,7 @@ class _FlutterFormState extends ConsumerState { widget.options.checkPage!.title!, Expanded( child: CustomScrollView( + physics: const ClampingScrollPhysics(), slivers: [ SliverFillRemaining( hasScrollBody: false,