You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/virtualview.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,6 @@ DevTools does not currently support debugging JavaScript on the main thread. Thi
47
47
Debugging all other parts of your JavaScript code should work as expected. We are working on closing this gap before releasing `VirtualView` to stable channels of React Native.
48
48
:::
49
49
50
-
51
50
### Prerendering
52
51
53
52
`VirtualView` enables you to benefit from main thread rendering while mitigating the disadvantages of dropped frames by rendering earlier before it is needed. This is called “prerendering”.
@@ -29,7 +29,7 @@ This release is a crucial milestone for React Native: after multiple years of ro
29
29
30
30
Starting with this version, [the New Architecture](https://reactnative.dev/blog/2024/10/23/the-new-architecture-is-here) will be the **only** architecture for React Native, there will no longer be an option to opt-out of the New Architecture.
31
31
32
-
The New Architecture has been tested and refined over a long period of time, and [has been the default architecture since version 0.76](/blog/2024/10/23/the-new-architecture-is-here). We're now confident in making it the only architecture.
32
+
The New Architecture has been tested and refined over a long period of time, and [has been the default architecture since version 0.76](https://reactnative.dev/blog/2024/10/23/the-new-architecture-is-here). We're now confident in making it the only architecture.
33
33
34
34
In 0.82, if you try to set `newArchEnabled=false` on Android, or if you try to install Cocoapods with `RCT_NEW_ARCH_ENABLED=0` on iOS, these will be ignored and your app will still run with the New Architecture enabled.
35
35
@@ -154,6 +154,8 @@ React 19.1.1 also improves the reliability of [`useDeferredValue`](https://react
154
154
155
155
Starting from React Native 0.82, native components will provide DOM-like nodes via refs.
156
156
157
+
<!--alex ignore just retext-equality-->
158
+
157
159
Before, native components provided React Native-specific objects with just a handful of methods like `measure` and `setNativeProps`. After this release, they will provide [nodes implementing a subset of the DOM API](https://reactnative.dev/docs/element-nodes) that allow traversing the UI tree, measuring layout, etc. as they do on Web, e.g.:
158
160
159
161
```jsx
@@ -292,11 +294,11 @@ React Native 0.82 contains over 868 commits from 93 contributors. Thanks for all
292
294
293
295
We want to send a special thank you to those community members that shipped significant contributions in this release:
294
296
295
-
-[Dawid Małecki](https://github.com/coado) and [Jakub Piasecki](https://github.com/j-piasecki) for their help in rolling out Hermes V1.
296
-
-[Riccardo Cipolleschi](<[https://github.com/cipolleschi](https://github.com/cipolleschi)>) for his support with writing the React 19.1.1 and Hermes V1 paragraph.
297
-
-[Rubén Norte](https://github.com/rubennorte) for his support with writing the DOM Api and Performance API paragraphs.
298
-
-[Tomasz Zawadzki](https://github.com/tomekzaw/) for his support with the `debugOptimized` benchmarking.
299
-
-[Krystof Woldrich](https://github.com/krystofwoldrich) for his support with fixing the swallowing of uncaught promise rejections.
297
+
-[Dawid Małecki](https://github.com/coado) and [Jakub Piasecki](https://github.com/j-piasecki) for the help in rolling out Hermes V1.
298
+
-[Krystof Woldrich](https://github.com/krystofwoldrich) for the support with fixing the swallowing of uncaught promise rejections.
299
+
-[Riccardo Cipolleschi](<[https://github.com/cipolleschi](https://github.com/cipolleschi)>) for the support with writing the React 19.1.1 and Hermes V1 paragraph above.
300
+
-[Rubén Norte](https://github.com/rubennorte) for the support with writing the DOM Api and Performance API paragraphs.
301
+
-[Tomasz Zawadzki](https://github.com/tomekzaw/) for the support with the `debugOptimized` benchmarking.
0 commit comments