Y
Hacker News
new
|
ask
|
show
|
jobs
by
cyberax
238 days ago
React.Native doesn't use Chromium.
1 comments
liqilin1567
238 days ago
Just curious - how does React.Native implement native UI if it doesn't use chromium
link
hokumguru
238 days ago
It’s more complex now since they shipped the new renderer, but essentially serializes the react UI tree to JSON and passes it to native which parses and renders native components
link
notpushkin
238 days ago
By mapping some “low-level” components to platform primitives:
https://reactnative.dev/docs/intro-react-native-components
link
adityapurwa
238 days ago
React Native asks the native layer to render the UI natively.
link