Igor

Results 7 comments of Igor

Done. https://github.com/mastermoo/react-native-action-button/pull/267

I found this: ``` getOffsetXY() { return { // paddingHorizontal: this.props.offsetX, paddingVertical: this.props.offsetY }; } ``` In fact paddingVertical is a shortcut for both paddingTop AND paddingBottom. Replaced it by...

This happened to us with /node_modules/.bin/ symlink folder being processed but since it's a leftover and modules don't exist in node_modules/ it exits with an error: ![image](https://user-images.githubusercontent.com/16898357/125452325-67a53921-e2a6-46c0-b9f2-378e2ebee02d.png)

@agentS So which particular prop sets the thumb style? The stylesheet prop is only setting the whole slider style.

Thank you for pointing this out, helped fixing the issue on our side. Could be because of how WebMessageCompat works under the hood (implemented in [v13.13.1](https://github.com/react-native-webview/react-native-webview/releases/tag/v13.13.1))? https://github.com/react-native-webview/react-native-webview/pull/3609/files#diff-e15c72676fc096ed252a276e1a7224367e53c89e804fe8351f4d0c6cc2819b59R259

This patch works well. 🔥 Fixes our problem.

This happens as well with `react-native-tab-view` with a custom tab bar with `renderTabBar`. Strangely, it only happens when used inside a `react-native-modal`. In a StackScreen, everything is ok. I'm pressing...