Does React Native have a Virtual DOM?

Technology CommunityCategory: React NativeDoes React Native have a Virtual DOM?
VietMX Staff asked 3 years ago

Yes, just like Virtual DOM in React, React Native creates a tree hierarchy to define the initial layout and creates a diff of that tree on each layout change to optimize the renderings. Except React Native manages the UI updates through couple of architecture layers that in the end translate how views should be rendered while trying to optimize the changes to a minimum in order to deliver the fastest rendering possible.