mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-20 03:13:47 +02:00
Changed the scrollphysics
This commit is contained in:
parent
337917d3da
commit
503a965412
1 changed files with 2 additions and 0 deletions
|
@ -239,6 +239,7 @@ class _FlutterFormState extends ConsumerState<FlutterForm> {
|
||||||
child: fs.FormState(
|
child: fs.FormState(
|
||||||
formController: _formController.getFormPageControllers()[i],
|
formController: _formController.getFormPageControllers()[i],
|
||||||
child: CustomScrollView(
|
child: CustomScrollView(
|
||||||
|
physics: const ClampingScrollPhysics(),
|
||||||
slivers: [
|
slivers: [
|
||||||
SliverFillRemaining(
|
SliverFillRemaining(
|
||||||
hasScrollBody: false,
|
hasScrollBody: false,
|
||||||
|
@ -256,6 +257,7 @@ class _FlutterFormState extends ConsumerState<FlutterForm> {
|
||||||
widget.options.checkPage!.title!,
|
widget.options.checkPage!.title!,
|
||||||
Expanded(
|
Expanded(
|
||||||
child: CustomScrollView(
|
child: CustomScrollView(
|
||||||
|
physics: const ClampingScrollPhysics(),
|
||||||
slivers: [
|
slivers: [
|
||||||
SliverFillRemaining(
|
SliverFillRemaining(
|
||||||
hasScrollBody: false,
|
hasScrollBody: false,
|
||||||
|
|
Loading…
Reference in a new issue