Sep 3, 2018 · 1 min read
One of my favorite things with Flutter is how deeply integrated with Dart it is.
My biggest fear when starting Flutter was to see a lot of workarounds to bypass limitations of the language. Which leads to things such as React’s “propTypes” or its old context.
In Flutter this is not the case. When a feature is needed but limited by the language, Flutter team answer with a “We’ll integrate that into the language”.
https://github.com/flutter/flutter/issues/17862#issuecomment-404287784
This also led to things such as:
- https://pub.dartlang.org/flutter
- https://www.dartlang.org/tools/pub/dependencies#dependency-sources (sdk dependency is specific to flutter)
In the end with flutter you could extract any given part of your app into a package in a matter of seconds. And work on both simultaneously without bothering the development cycle.
Good luck with that in React/RN.
