mirror of
https://github.com/status-im/react-native.git
synced 2025-01-11 01:56:26 +00:00
241fd0869d
Summary: During the patch for fixing the order of UI operations, we apply updates to any node receiving a ViewManager command in order to ensure that nodes that were not yet mounted to a View and not yet attached to their parent would be properly able to receive the event. However, if a node is already a view, calling the update could cause unwanted things to happen (for example, the View's bounds changing improperly), because we're only traversing that node of the tree and down (instead of the entire tree). This fixes the issue by only applying updates to the node if the view mount state has changed. Reviewed By: sriramramani Differential Revision: D3448356
Building React Native for Android
See the docs on the website.
Running tests
When you submit a pull request CircleCI will automatically run all tests. To run tests locally, see Testing.