-
-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Leverage DraggableScrollabeController Once It's Available #150
Comments
Any updates to this? |
DraggableScrollabeController will probably be included in the next Flutter version. There's no date for that yet, but I expect it to be around February or March. |
Is already on |
I'm not sure what you're referring to. flutter/flutter#92440 is already on master and fully functional. This library however doesn't yet support it. |
Thanks for your response! I missed that this is a separate package... |
Any updates on this? I need to expand the sheet programatically. |
Closed via #239 |
When #149 goes in, developers using the expandable bottom sheet feature will have to use
FeedbackSheetDragHandle
in the feedback sheet builder to provide a visual drag handle for users.This is pretty clunky, but the only way to do it because the drag handle needs to be placed as a fixed header on top of their scrollable widget in order for users to be able to click and drag on it to drag the sheet. Once
DraggableScrollableSheet
supports programmatic control in production (see: flutter/flutter#92440) we can pull the drag handle out of the builder so that developers don't have to provide it.Additionally, the
feedback_widget
uses a value notifier internally to manage sheet related animations. This can also be replaced by referencing the controller directly assuming the controller is made aChangeNotifier
.The text was updated successfully, but these errors were encountered: