I know that Flutter renders the UI on a native canvas completely controlled by the Flutter run time. In React Native, it translates to the native UI via a bridge and renders native components.
How does Compose Multiplatform render the UI on iOS? Does it translate to the native UI (SwiftUI) or does it still use a canvas that's completely controlled by the Compose runtime and draw directly on it?