Published on

React Native vs Flutter: Why Flutter is better than React Native

Authors

How I feel using React Native(RN) and Javascript(JS)/TypeScript(TS)

demo

"The best thing we can do today to JavaScript is to retire it"

-- JSON creator Douglas Crockford

Preface

I aim to explain why Flutter will one day make JS frameworks look outdated the same way JS frameworks did jQuery.

I'm going to use the word component/widget interchangeably because they share the same desired result, a rendered piece of UI.

But there are differences.

Namely that widgets are instances classes whereas components are functions(mostly).

Intro

Every program is a collection of variables, functions, classes, and modules.

Different programming languages and frameworks have taken different approaches to defining and organizing these constructs.

The following are the instances in which I see Dart/Flutter have done a better job than JS/React Native(RN).

Language/Tooling

  • Type safety
  • Param definitions
  • Go to definition

Type safety

Get warnings immediately when passing a wrong param/prop to a component/widget.

RN doesn't warn us when we use a prop that doesn't exist on a component.

demo

Whereas Flutter warns us immediately if we try to do so with a widget.

demo

Param definitions

Param definitions & descriptions are superior in Flutter.

RN component props & descriptions are terse to a fault.
demo
Whereas Flutter params & descriptions are helpfully concise.
demo

Go to definition

Out of the box go to definition "just works", no need for additional configuration(more on that later).

Simplified export/import syntax

  • No ES5 vs ES6 syntax
  • No default vs named export
  • No longer need to export
  • No missing imports

No need to explicitly name each export/import

Anyone who has worked with JS for some time has seen a file filled with many exports.

It contains Redux selectors, reducers, or actions; or perhaps it's a controller for a Node API.

It looks something like this.

Repeated, verbose code.

demo
In Flutter, all variables defined in one file are immediately available in the importing file.

demo

No missing imports

We've all been there, we've imported something that we thought was "there", or perhaps misspelled what we wanted to import.

In RN/JS nothing prevents us from importing non existent variables.

demo

Whereas in Flutter if we try to do that it'll complain immediately.
demo

Less jerry rigging to build

  • app.config.js, eas.json, metro.config.js, babel.config.js, etc
    • Know what each of these files do?
    • Sorta?
    • Could you explain it in detail for a new team member?
demo
  • What about these?

  • eslintrc.js, markdownlint.json, jsconfig.json, next.config.js, postcss.config.js, prettier.config.js, tailwind.config.js, vite.config.js?

    demo

Style common UI elements in one place

There have been so many patterns for styling evangelized over the years.

Thus it's hard to pick which pattern to cite as an example.

That being said, we all know RN doesn't provide style by default.

How grueling it is to have to style each and every screen, ui component, container, card...

When we have to style each component/screen individually, we end up with styles scattered everywhere in our codebase.

That leads to the problem of having repeating the same styles in multiple places because we/new team members aren't aware they exist elsewhere.

demo
In Flutter the solution is to use a set of commonly used theme elements styled in one place, the theme

demo

Performance

There have been many case studies over the years on the speed of Dart vs JS.

Community

Flutter now has more stars than RN on Github.

Closing thoughts

  • Some might argue that the tooling problem in JS is solved with TS. I'd argue that introduces config complexity. Magnifying the "jerry rigging" problem mentioned.

  • Dart code is more verbose. See above named/default export syntax as well as the corresponding import/export syntax.

  • "Learning Dart can be daunting task for beginners". Checkout this repo for examples of less than steller JS behaviors.

Just a few examples, not going to dive into async/await, then/catch, prototypes, etc.

parseInt(0.000001) // 0
parseInt(0.0000001) // 1

parseInt('f*ck') // NaN
parseInt('f*ck', 15) // NaN
parseInt('f*ck', 16) // 15
parseInt('f*ck', 17) // 15
parseInt('f*ck', 18) // 15