I’d wager that it’s as native as Electron. It might be faster, sure, but it’s not native to any platform.
> but it’s not native to any platform
Why is this still a talking point? So what if the app renders with AppKit or Cairo on macOS, you can both look as native as the other, doesn't the actual UX matter more than how the implementation was made?
raph wrote about that already: https://raphlinus.github.io/rust/gui/2022/07/15/next-dozen-g...
How so? It renders to a window buffer using your GPU API and interfaces with your OS for event handling. Electron renders using an embedded browser and uses said browser for input/events. Isn't that quite different?