Hacker News new | ask | show | jobs
by nzoschke 1227 days ago
Came here to say this.

Flutter draws to a canvas at 60 FPS and uses the GPU.

https://buildflutter.com/how-flutter-works/

Anecdotally, I see it getting faster and faster on new engine versions without app changes.

1 comments

I absolutely hate how 60 FPS is the goal for these canvas-based solutions. I can render DOM at 240 FPS (and much higher if my monitor had a better refresh rate) no problem, but things like Flutter barely ever even make it to the triple digits. It's an embarrassing case of contentment. 60 FPS should not be considered ideal. It should be considered the absolute bare minimum and really only applicable for resource-constrained systems. If you're not doing absurd amounts of number crunching like raytracing, then you should aiming for 1000 FPS.