junghsuan
junghsuan
hi @Pankti16 , what's your react-native version? if your version is below 0.62 please either using `ref.getNode()` in ``` listRefArr.current.push({ key: route.key, value: ref, // replace to ref.getNode() }); ```...
@Pankti16 OK, I see. Your problem is that offsets between tabs are not synced correctly, right? I will try to run your code later.
@Pankti16 hi, [Here](https://drive.google.com/file/d/1zxxCqlADmWQ5MrWS-byClRvP3Gr8eH0t/view?usp=sharing) is my recording of your code running on iOS simulator. I removed all images and icon since I don't have the sources. I think that is what...
@thanhdevapp Hi, did you mean that the position of tab is not properly synced? I just update a new version, please check the file ``headerScrollableDemo.js``.
> > hi @Pankti16 , what's your react-native version? > > if your version is below 0.62 please either using `ref.getNode()` in > > ``` > > listRefArr.current.push({ > >...
Hi @aroravinay4 Are you using this [https://github.com/APSL/react-native-keyboard-aware-scroll-view](https://github.com/APSL/react-native-keyboard-aware-scroll-view) ? Could you try `item.value._component.scrollToOffset({ offset: 0, animated: false });` Thanks!
> Hi @JungHsuan > > i am using react-native-keyboard-aware-scroll-view and converted into > const AnimatedKeyboardAwareScrollView = Animated.createAnimatedComponent( > KeyboardAwareScrollView, > ); for the tab animation and when i use as...
Yes. You can set ``minHeight`` to fit the shorter tab, but when you scroll the longer tab, the shorter one would not scroll to the right position because the ``scrollToOverflowEnabled``...
I am working on it.
@dimskyy Hi, I've updated the code. It would be a bit of messy since the scrolling behaviors between iOS and Android are different.