I am currently working on a page with a custom pinned TabBar and a SliverList (fixed count). This package helped me achieve scrolling on tap to widgets beyond the viewing boundary(and not rendered before), i.e anchored scrolling.
However I need a way to have my tab-bar scroll itself as I scroll through various AutoScrollTags, I was thinking that if the controller you provide had a broadcast stream of index changes / a listener or even a AutoScrollView that extends Flutter's built-in ScrollView's , then that would just be great !!
I am currently working on a page with a custom pinned TabBar and a SliverList (fixed count). This package helped me achieve scrolling on tap to widgets beyond the viewing boundary(and not rendered before), i.e anchored scrolling.
However I need a way to have my tab-bar scroll itself as I scroll through various
AutoScrollTag
s, I was thinking that if the controller you provide had a broadcast stream of index changes / a listener or even aAutoScrollView
that extends Flutter's built-inScrollView
's , then that would just be great !!Thanks :)