Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
modal_bottom_sheet
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Dendos
2020-08-08 14:58:10 +0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e63be7ab61124b83dcbcc0c00ad2c78b6d0f3710
e63be7ab
1 parent
051903c2
add closeProgressThreshold for cupertino modal
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
lib/src/bottom_sheets/cupertino_bottom_sheet.dart
lib/src/bottom_sheets/cupertino_bottom_sheet.dart
View file @
e63be7a
...
...
@@ -70,6 +70,7 @@ Future<T> showCupertinoModalBottomSheet<T>({
@required
ScrollWidgetBuilder
builder
,
Color
backgroundColor
,
double
elevation
,
double
closeProgressThreshold
,
ShapeBorder
shape
,
Clip
clipBehavior
,
Color
barrierColor
,
...
...
@@ -110,6 +111,7 @@ Future<T> showCupertinoModalBottomSheet<T>({
),
secondAnimationController:
secondAnimation
,
expanded:
expand
,
closeProgressThreshold:
closeProgressThreshold
,
barrierLabel:
barrierLabel
,
elevation:
elevation
,
bounce:
bounce
,
...
...
@@ -139,6 +141,7 @@ class CupertinoModalBottomSheetRoute<T> extends ModalBottomSheetRoute<T> {
CupertinoModalBottomSheetRoute
({
ScrollWidgetBuilder
builder
,
WidgetWithChildBuilder
containerBuilder
,
double
closeProgressThreshold
,
String
barrierLabel
,
double
elevation
,
ShapeBorder
shape
,
...
...
@@ -160,6 +163,7 @@ class CupertinoModalBottomSheetRoute<T> extends ModalBottomSheetRoute<T> {
assert
(
isDismissible
!=
null
),
assert
(
enableDrag
!=
null
),
super
(
closeProgressThreshold:
closeProgressThreshold
,
scrollController:
scrollController
,
containerBuilder:
containerBuilder
,
builder:
builder
,
...
...
Please
register
or
login
to post a comment