We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to dragg from right when i have typeOpen: TypeOpen.FROM_RIGHT,
The text was updated successfully, but these errors were encountered:
??
Sorry, something went wrong.
I can confirm this issue, dragging works very well from the left, but it's not working from the right.
I can see that the code is already prepared for dragging on the right side as well. The problem is due to
void _myOnHorizontalDragStart(DragStartDetails detail) { if (!widget.isDraggable) return; if (detail.localPosition.dx <= WIDTH_GESTURE && !(widget.withPaddingTop && detail.localPosition.dy <= HEIGHT_APPBAR)) { this.setState(() { dragging = true; }); } }
in animated_drawer_content.dart:120
animated_drawer_content.dart:120
Increasing WIDTH_GESTURE or commenting out the inner if-statement will make dragging work for you on the right side too.
Best regards
No branches or pull requests
I want to dragg from right when i have typeOpen: TypeOpen.FROM_RIGHT,
The text was updated successfully, but these errors were encountered: