flutter-draggable-scrollbar icon indicating copy to clipboard operation
flutter-draggable-scrollbar copied to clipboard

add horizontal scrollbar support

Open GAM3RG33K opened this issue 4 years ago • 4 comments

add horizontal scrollbar support in the library and a demo tab in the example app.

Screenshots attached for details Screenshot_1569633376 Screenshot_1569633370

GAM3RG33K avatar Sep 28 '19 01:09 GAM3RG33K

@marica27 This is my first pull request, so can you just check it out and let me know? Thanks in advance.

GAM3RG33K avatar Oct 18 '19 10:10 GAM3RG33K

What is the status on the PR? I would like to use a draggable horizontal scrollbar in my project.

rayliverified avatar Mar 02 '20 01:03 rayliverified

By the way, you forgot to modify SlideTransition, so that when child is horizontal, scrollbar pulp should go down on dissapearing, and not to the side.

To fix this you should make SlideFadeTransition accept isVertical parameter as well, and inside build method:

...
position: Tween(
          begin: Offset(isVertical ? 0.3 : 0.0, isVertical ? 0.0 : 0.3),
...

emvaized avatar May 24 '20 12:05 emvaized

@emvaized That's right. I don't know how it got out of my attention. I will fix it soon. Thanks for pointing it out.

GAM3RG33K avatar May 25 '20 03:05 GAM3RG33K