doc/articles/features/using-native-rendering.md
The native renderer is our oldest backend, which uses the native components and APIs to render the UI.
Each supported platform (iOS, Android, and WebAssembly) has its own set of platform interactions, listed below, allowing for deep integration of native components into the visual tree. Each UIElement has a corresponding native element (div on WebAssembly, UIView on iOS, ViewGroup on Android).
This renderer uses the native input controls of the platforms, providing the best access to accessibility and IME features.
This renderer supports integrating native views.
On WebAssembly, XAML elements are translated into HTML elements:
<div>TextBlock, Image are materialized as semantic elements like <p>, ``, etc.This rendering integrates with CSS and DOM APIs, enabling UI behavior consistent with web standards.
FrameworkElement types are backed by native UIView instances.Image implicitly create native UIImageView subviews.FrameworkElement types inherit from native ViewGroup.Image wrap native ImageView instances.