Hovhannes Menejyan
Hovhannes Menejyan
So basically this is what I am trying (Not my actual setup, just a bare minimum to show the steps) ``` //webpack.prod.ts const DashboardPlugin = require('webpack-dashboard/plugin'); ... const prodConfig: webpack.Configuration...
I actually just realized that adding the following to my `buildWeb.ts` starts displaying the dashboard, but the dashboard just shows up empty and does not update the elements. ``` const...
Ah, I see the reason now. This is how react-native-walkthrough-tooltip renders the children element in the parent ``` {hasChildren ? ( {children} ) : null} ``` Since this wraps children...
@gregfenton Sure, ill make a PR for that. Just to make sure, we are just adding a way to pass styles to the original children wrapper correct? Since there is...
@gregfenton That's correct, empty by default so if `parentWrapperStyle` is undefined, then everything will stay the same.
@gregfenton Just opened a PR. Did some quick tests, did not notice any alterations to the original behavior if nothing is passed. And of course, now we are able to...
Hi, I have a [Pull Request](https://github.com/jasongaare/react-native-walkthrough-tooltip/pull/139) with these fixes and was wondering if there is any ETA for merging this in. I am stuck using a local version of the...
Had the same issue, for me, wrapping the Tooltip in a view and giving a alignSelf style of flex-start or center to the parent view fixed the issue.
Wrapping the component in `React.forwardRef` also seems to fix the issue for some reason. Basically change `ToolTipContent` to ``` const ToolTipContent = React.forwardRef(() => { return ( ); }); ```...
@gregfenton I realized that this is not really specific to React Native Web actually. Also it seems like the correct way to fix this would be to do the `const...