react-native-scrollable-tab-view icon indicating copy to clipboard operation
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)

Open saurabh874 opened this issue 4 years ago • 1 comments
trafficstars

Screenshot 2021-06-18 at 08 59 59

saurabh874 avatar Jun 18 '21 03:06 saurabh874

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.

mudassiriqball avatar Oct 13 '21 12:10 mudassiriqball