mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
54ebfafb21
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53734 ## Changelog: [Internal] [Changed] - ensure animatedNodes collection is only accessed on render thread now `createAnimatedNode` can be called async from js thread (since https://github.com/facebook/react-native/pull/53476), `animatedNodes_` will be written on both threads, there was no proper locking mechanism for read we can simply add locks wherever we read/write animatedNodes_; but there's way to use fewer locking - since AnimatedNode is created async, but will not be R/W async anywhere else, we can add a new collection to temporarily hold nodes created async and flush it on render thread Reviewed By: lenaic Differential Revision: D82119554 fbshipit-source-id: 7f29e9e046cdf2e233c548442d70f1ff5b931cdd
Where is the template?
The React Native Template has moved from being shipping inside the react-native package to it's own package: @react-native-community/template.
Why has it moved?
The React Native Frameworks RFC0759 provides background information.
When was it moved?
The 0.75 release.