Samuel Edwin
Samuel Edwin
You technically can do it [manually](https://github.com/Microsoft/react-native-code-push/tree/5b640b2c15dc0f20e8ac27e3538343200d9baa6f#plugin-usage). I've never tried myself, but with the correct configuration it should work. If you look at the code push source code, the wrapper is...
JS reload only clears JS app state and view hierarchies created by React Native. The view controllers however, is not managed by React. They are managed by native code, so...
I have no idea about Android. From iOS, it is supported from native code, using `hidesBottomBarWhenPushed` to the pushed view controller. To make it work when calling from JS however,...
I am facing the same problem. Is there anything that can be done to solve this? I would like to contribute if there are some guidances.
I haven't tried that yet, but I finally found a solution that works. For every `swift_library` you're going to use, you wrap it first in a `objc_library`. ```python # Foo/BUILD...
> That isn't really a supported use of the includes attribute (or textual_hdrs) on objc_library Yeah definitely gonna be changed in the future since this is just a proof of...
I'm getting lots of this issues as well. Is there anything I can do to help?
> Try our PR to see if the problem gone #1710 ;-) Also not working for me either :(
Thanks for the clarification @rahul-malik, I'm gonna try some solutions based on what you explained.
We ended up replacing ASTextNode with ASTextNode2 on screens that have the problem. The problem isn't totally gone but significantly reduced for now.