You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,8 @@ There are several options that allow for more control:
62
62
|`alwaysShowLeadingAndAction`| This makes Leading and Action always visible. Default value is false. |
63
63
|`headerBottomBar`| AppBar or toolBar like widget just above the body. |
64
64
| `backgroundColor` | The color of the Material widget that underlies the entire DraggableHome body. |
65
+
| `physics` | The physics property determines how the scroll view responds to user input, such as how it continues to animate after the user stops dragging the scroll view. |
66
+
| `scrollController` | Used to control the position to which this scroll view is scrolled |
65
67
| `curvedBodyRadius` | Creates a border top-left and top-right radius of body, Default radius of the body is 20.0. For no radius simply set the value to **0**.|
66
68
| `fullyStretchable` | Allows toggling of fully expand draggability of the DraggableHome. Set this to true to allow the user to fully expand the header. |
67
69
| `stretchTriggerOffset` | The offset of overscroll required to fully expand the header.|
/// physics: How the scroll view should respond to user input. For example, determines how the scroll view continues to animate after the user stops dragging the scroll view.
83
84
finalScrollPhysics? physics;
84
85
86
+
/// scrollController: An object that can be used to control the position to which this scroll view is scrolled.
0 commit comments