4

Thoughts on Flutter!
I'd like to see something like flutter for front end web development. I like the approach used by Google for Hybrid app development.
Dart language fits perfect for the case. Static typing, OOPS, Generics, state management, UI design everything right out of the box.
I don't have to create layout separately like HTML in web or XML in android.
Everything is managed by Dart alone.
It's like what developer wishes for UI rich app development.
I'm not saying Flutter or/and Dart is the perfect solution. Every language has pros and cons. (Maybe not applicable to JavaScript! Haha! ) But still The overall solution to UI development is way cleaner than web.

Comments
  • 1
    I’m wondering also myself! Doing React Native for a few years now, but i’m open for alternatives. Although i am a bit holding back.
  • 0
    @JohnDoesNot Definitely give it a try. There are some similarities.
    - Components are replaced by widgets,
    - setState() is still there. But state management is simple. No redux here.
    - render method is replaced by build method
    - Writing down widgets syntax is maybe tricky at start but you will get into it once you're familiar enough. Just like jsx but better than it.
  • 0
    Nice! Will give it a try.
Add Comment