prscX / react-native-tooltips

React Native: Native Tooltip View
Apache License 2.0
271 stars 40 forks source link

[Android bug] when changing screen/scrolling, tooltip remains fixed on screen #32

Open oferRounds opened 5 years ago

oferRounds commented 5 years ago

For example, when if presented on tab A, on a list on the 2nd row, when moved to Tab B, you still see it on the screen, but above tab B

koox00 commented 4 years ago

ViewTooltip, the android native module, looks for an instance of NestedScrollView for the tooltip to follow. You can verify it works by installing react-native-nested-scroll-view and by replacing your ScrollView with NestedScrollView. I think the issue should be raised in https://github.com/florent37/ViewTooltip.

oferRounds commented 4 years ago

@koox00 thanks! will add it there