-
Notifications
You must be signed in to change notification settings - Fork 119
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
Question : does this library only work for buttons ? #65
Comments
Thanks @Boubaker93 for raising the query. It works for all type of views. Are you facing this problem for Android? Thanks |
Hello @prscX thanks for your quick response, Yes i'm facing this problem on android (did not try it on iOS) My react-native version is 0.58.6 Thanks |
Hi: Please refer issues section of README for the fix. Let me know in case it didn't worked out. Thanks |
Hello @prscX
and it sill gives me the same error (for this peace of code
Note that if i change the EDIT: It also worked with Thanks for your help |
I'm having the same issue on both iOS and Android - tried 0.0.18 and 0.0.17 |
@ljuborados no still did not found a solution :/ |
Hello @prscX is there any updates about this issue ? |
I am still facing the same issue on android if i used it on a view it only make a small circle on it not on all the view but on IOS it's okay |
The same Issue is repeated. Working on OS platform android temporarily, and it's not working appropriately. |
Does anyone find a way to used it on anything than buttons ? |
@danieljgp2 No you cant directly use it on anything other than buttons. But i found a work around : You can just wrap your element into a touchableOpacity and set the
|
@Boubaker93 Do you know if there is a way to add custom buttons inside the tours circles? |
@danieljgp2 i don't know, i did not try that out honestly. |
@Boubaker93 Hello, im having a problem on Android, when i set targetTransparent to False the content of the touchableOpacity goest to the back and the target overlays it. |
@temraz @RishavKumar-3796 Im facing the same issue on android, you guys can check it here #78 anyone found a solution to this issue ? |
For anyone have faced with this issue.
this will fix the issue "React Internal Fiber not found" for ref. |
I think this issue should be closed @prscX |
@ntcong91 your proposition did'nt work for me. (RN:0.61, react:16.9.0 , APTOUR:1.0.3) |
For anyone who is still facing this issue on React Native 0.60+ (when they switched to use forwardRef on basic components like View and TouchableOpacity, etc.), here's my dirty workaround: Create a placeholder View which extends React.Component (or PureComponent depends on your use) like this:
and wrap your app tour target inside it like this example and it will work: I found out about this when I was using the library perfectly fine with TouchableOpacity on RN 0.59.10, then I upgraded my project to RN 0.62 a few days ago and the library stopped working. |
@phatlaunchdeck This does not work with addAppTourTarget(AppTourView.for(ref, { ...props })). Do you have any idea how it can be done? And can you give the full example with DefaultView in action ? |
As the title said, does
AppTourView.for
only works with Buttons. because i tried it with a View and a Text component and it gives me this error :Tour view does not have React Internal Fiber
.Thanks for your help
The text was updated successfully, but these errors were encountered: