react-native-scrollable-tab-view
react-native-scrollable-tab-view copied to clipboard
On change the tab indication colour(Highlighted) does not show for next tab only in RTL ( for HEBREW language)
trafficstars
Same issue here, added some workaround for this to work. in node_modules/react-native-scrollable-tab-view/DefaultTabBar.js replace this:
const translateX = this.props.scrollValue.interpolate({ inputRange: [0, 1],
-
(remove this line) outputRange: [0, containerWidth / numberOfTabs],
-
(add this line) outputRange: [0, I18nManager.isRTL ? -(containerWidth / numberOfTabs): containerWidth / numberOfTabs],
});
Use patch-package (https://www.npmjs.com/package/patch-package) to keep this change consistent.