-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tooltip not shown on Android #15
Comments
@AJM88 Yes we are aware of this issue for Android. We are currently working on a fix #14 For now you can probably try the solution suggested by @prscX and use the See the documentation from react-native |
+1 |
+1 |
Yeah this problem is hard to fix. We were discussing this issue today at my company. I wish I was more knowledgable about Android. |
+1 I've investigated into the issue as well, but to no prevail. |
@prscX @StevenMasini @Dmitrylolo I created a PR that fixes this issue. #29 |
Is this issue solved? |
I have a react-native app working on Android and IOS.
I've included the react-native-tooltip library.
It is working perfectly on iOs but on Android the tooltip it is not displayed.
I've been digging around the library and it reaches the line with
tooltip.show();
without throwing any errors. But the tooltip it is just simply not displayed.This is the code for the tooltip.
<RNTooltips text={'Help message'} visible={this.state.tooltipVisible} reference={this.tooltipRef} tintColor='#222222' textColor='#FFFFFF' shadow={false} corner={5} arrow={false} autoHide={true} duration={2} clickToHide={true} position={1} align={1} gravity={4} />
Any idea why this is happening?
The text was updated successfully, but these errors were encountered: