Alex Mantsurov
Alex Mantsurov
Thank you for the awesome package! Do you have any ETA on when the support for @apollo/client >=3.0.0 arrives?
Hi @morrys, thank you for your reply. Makes sense indeed!
@tnayuki, I know this was a long time ago, but have you managed to make a fix? Even when I add another plugin those damn imports flow-runtime generates are not...
There is another similar issue #205, but as I see the error is different and configuration there seems to be for Babel 6.
An update, if I remove: ```json [ "@babel/plugin-transform-flow-strip-types" ] ``` ... from .babelrc, then I get `Unexpected token {` on app start up instead of the error above.
Ok, the issue is with import type and restructuring. Here is a piece of code where it fails: ``` import type { ____ViewStyleProp_Internal as ViewStyleType, ____TextStyleProp_Internal as TextStyleType, ____ImageStyleProp_Internal as...
The reason it's not working only in that place is because I have `// @flow-runtime` pragma only in that file, so only that one is being processed by flow-runtime. Now,...
Hi @EddyVerbruggen, here is the sample project: https://github.com/terreb/feedback Feedback shows up on the modal page on iOS but doesn't on Android where it's basically hidden behind the page. Does it...
How do I get the feedback's nativeView?
Ok, thanks, seems it's possible to get access to the native view by the reference feedback.lastAlert, but only if it's already shown at least once. Setting elevation doesn't help. I'm...