showtime-xyz / showtime-tab-view

A react native TabView component that support collapse header and custom refresh control, powered by Reanimated & GestureHandler. Join Showtime:
https://showtime-xyz.notion.site/Join-Showtime-Public-fa6282938e284134b302184062d7e329
MIT License
219 stars 23 forks source link

Scrolling Entire container to Top? #2

Closed aminerol closed 1 year ago

aminerol commented 1 year ago

can we have a ref for scrolling the container to top? Thank you

alantoa commented 1 year ago

Actually, I have already added it to my TODO. I will implement it when I have time.

aminerol commented 1 year ago

Thank you for the reply, this is my workaround for it if anyone was curious

scrollToTop: () => {
  runOnUI(() => {
   'worklet'
   Object.values(childScrollRef).forEach(ref => {
     _ScrollTo(ref, 0, 0, false)
   })
 })()
}