Hacker News new | ask | show | jobs
by coldtea 1601 days ago
>Flutter on the web uses the DOM?

Yes. On the web it actually has 2 renderers, a HTML (which uses the DOM) and a Canvas based one (which doesn't).

But I mostly wanted to write about what's the case with React - I just wrote quickly and also kept the reference to Flutter from the parent comment which mentioned them together...

1 comments

Thanks, I didn't know about the HTML renderer.

Is there any demo online?