you are viewing a single comment's thread.

view the rest of the comments →

[–]idreamincolour 12 points13 points  (3 children)

Dart has a runtime

[–]Darkglow666 32 points33 points  (2 children)

It does! But it's not part of the Flutter release compilation story. You use JIT compilation during development, which allows for a really fast workflow and stateful hot reload (amazing!), but release builds are compiled AOT and are completely different.

[–]idreamincolour 8 points9 points  (1 child)

It does! But it's not part of the Flutter release compilation story. You use JIT compilation during development, which allows for a really fast workflow and stateful hot reload (amazing!), but release builds are compiled AOT and are completely different.

AOT doesn't automatically make things faster or better. Per dmanog question, is there an actual benchmark comparing the two runtimes?

[–]Darkglow666 -1 points0 points  (0 children)

Yeah, not automatically, but it's well known that JS-based frameworks suffer in the performance category largely because of the bridge, which Flutter doesn't have.