The optional `backgroundColor`, `elevation`, `shape`, and `clipBehavior` parameters can be passed in to customize the appearance and behavior of material bottom sheets.
#### Using it with a scroll view inside
Assign the `ModalScrollController.of(context)` to your primary modal to sync the scroll with the modal's drag
```dart
showMaterialModalBottomSheet(
context:context,
builder:(context)=>SingleChildScrollView(
controller:ModalScrollController.of(context),
child:Container(),
),
);
```
## Cupertino Modal BottomSheet
...
...
@@ -67,7 +82,7 @@ iOS 13 came with an amazing new modal navigation and now it is available to use