Flutter – Why I am so different(Superfast!). Why Flutter so Different?
First, it’s not another JavaScript framework. Which allow us to develop UI Apps for different screen size by responsive UI components.
Not SEO(Search Engine Optimization) friendly.
It’s full-fledged SDK with high performance during Development(JIT) and Runtime(AOT).
Code get compiled
Into native machine code (or assembly code) for target machine(ARM/x64)
Executed directly by the hardware.
JavaScript complied code for web.
Even flutter app get compile in JavaScript for Web. But still flutter engine avoid “JavaScript Bridge(Interoperate with native code)” which typically required by any JavaScript App in order to run in the any Web Browser.
Which make flutter app high performance, speed with better quality one’s even over web.