bottom_bar_with_sheet
bottom_bar_with_sheet copied to clipboard
Feature Request: Draggable bottom sheet
Can you add an option to make the bottom sheet draggable to collapse? As in https://pub.dev/packages/modal_bottom_sheet.
Hello @sabetAI 👋🏻 It's very good idea. I think I will try to add this functionality in next update.
You can propose a solution if you have an idea about creating this functionality.
Hey @Frezyx 👋, great library 👌! The simplest way I can think of is to wrap your AnimatedContainer
in a GestureDetector
with onVerticalDrag
* callback that checks for a downward drag with a velocity over a certain threshold. modal_bottom_sheet takes an additional step and allows you to sync the sheet with any scroll views inside the sheet. I can take a shot at implementing it and let you know what happens 👍.
any update?