Do you want to develop apps more quickly? And to reduce costs with cross-platform development – but you’re not sure which technology to choose?
In this article, we compare the leading market players – Flutter and React Native – from the app owners’ perspective to help you identify which framework best fits your app idea.
What you’ll find in this article
Why we created this article
Cross-platform solutions are gaining popularity. Flutter and React Native are the two leading market players, but at Droids On Roids, we’ll build commercial apps for partners using the approach that best fits the solution – be it native, Flutter, or React Native.
Still, business owners always want to know the answer to several critical questions:
- Which framework best fits my project?
- Which solution can provide the fastest time-to-market for my app?
- Will my app be stable and user-friendly?
- Which solution is best if perfect design is my #1 priority?
We wrote this article to summarize the answers we share with our partners so that you can benefit from them, too.

We hope it helps you make a smart, conscious decision when it comes to choosing the best cross-platform solution for your app idea.
Who wrote the article?
It takes a certain level of experience to write about Flutter and React Native in sufficient depth – and to compare and contrast the two technologies.
As such, we asked two Droids On Roids developers to take on the task:
- Bartosz – Web & React Native Developer
- Damian – iOS & Flutter Developer
These two build commercial apps for clients in Flutter and React Native every day. So, you can be sure the knowledge they’re about to share includes not only the theory but years of development experience as well.
We have also tested our understanding against popular articles in the developer community, referencing these sources to answer any questions. You can find a full list of their references at the end of this post.
Flutter vs. React Native: In a nutshell
|
Flutter |
React Native |
What is it? |
A portable UI toolkit for building natively-compiled apps across mobile, web, and desktop* from a single codebase |
A framework for building native applications using React |
Official release |
December 2018, Google I/O |
March 2015, F8 Conference |
Created by |
Google |
Facebook |
Free and open source |
Yes |
Yes |
Programming language |
Dart |
JavaScript |
Popularity |
81,200 Stars on Github (December 2019) |
83,200 stars on Github (December 2019) |
Hot Reload |
Yes |
Yes |
Native performance |
Great |
Great |
UI |
Flutter apps look as good on the up-to-date operating systems as they do on older versions.
Since they only have one codebase, the apps look and behave similarly across iOS and Android – but thanks to Material Design and Cupertino widgets, they can also imitate the platform design itself. How’s that possible?
Flutter contains two sets of widgets which conform to specific design languages: Material Design widgets implement Google’s design language of the same name; Cupertino widgets imitate Apple’s iOS design.
This means that your Flutter app will look and behave naturally on each platform, imitating their native components.
|
Application components look just like native ones (e.g. a button on an iOS device looks just like a native iOS button, and the same on Android).
The fact React Native uses native components under the hood should give you confidence that, after any OS UI update, your app’s components will be instantly upgraded as well.
That said, this can break the app’s UI but it happens very rarely.
If you want your app to look near-identical across platforms – as well as on older versions of an operating system (as Flutter achieves) – then consider using third-party libraries (like this one). They will enable you to use Material Design components, in place of native ones.
|
Sharing code |
Currently on iOS and Android – but the long-term vision for Flutter is to offer an integrated solution that allows developers to write one code for both desktop & mobile, and for the web.
Flutter for Web support is available as a tech preview but still, this isn’t an alpha channel yet.
When it comes to developing desktop apps with Flutter, APIs are in their early stages of development and so will be probably released, just further down the line.
|
iOS and Android – but there are select libraries that allow you to use the same code to build iOS, Android, web, and Windows10 apps.
You can also extract shared code in mobile, desktop, and web apps, to a separate repository; treat it as a separate project; then inject it in the same way as another dependency.
This allows a developer to focus on writing code for a specific platform without having to consider compatibility with another one.
|
Top apps made with this technology |
Xianyu app by Alibaba, Hamilton app for Hamilton Musical, Google Ads app |
Instagram, Facebook, Facebook Ads, Skype, Tesla |
Time-to-market |
Typically much faster than native development. |
Possibly as fast as development with Flutter.
However…
React Native uses bridge and native elements, so it may require separate optimization for each platform – a problem that widget-based Flutter doesn’t run into. It may make the app development with React Native longer.
|
Competitive advantage |
- Great look and feel thanks to rich widgets;
- Rapidly growing community, and popularity;
- Excellent documentation with strong support from the Flutter team (which makes it easy to start developing with Flutter);
- Improving Flutter for Web, offering the potential for one codebase across mobile and web platforms
- Difficult to beat time-to-market length
|
- Stability (5+ years on the market);
- Many successful, prominent market players using React Native;
- Mature, vast community;
- Easy-to-learn technology;
- Plenty of tutorials and libraries, which allow quick and easy development;
- Code can be easily reused for both web app and desktop app development.
|
When it is not the best fit |
If…
• Your app needs to support 3D Touch (for now, Flutter doesn’t support 3D – but it features on the Flutter team’s long-term roadmap)
• The design of your app is platform-specific
• Your app requires multiple interactions with an OS; or requires rare, little-known native libraries
• You need a minimalistic UI, but rely on significant use of the phone hardware (e.g. an application that plays music, or only takes pictures)
• You want to create an instant app (small-sized app)
If your app sounds like any of the above, it’s probably better you choose native app development.
Read more about these cases here >>
|
If…
• Your app needs to handle less common, or ultra-specific tasks (like calculations) in the background
• You require custom communication via Bluetooth (which can be tricky to implement using React Native)
• You want to create an app for Android only
In truth, if you want to build an iOS app and you know JavaScript, consider React Native – but if you want an Android-only app, it’s likely better to build natively with another team. Why? Right now, iOS has better support than Android.
If your app sounds like any of the above, it’s probably better you consider choosing native app development.
|
Introduction to Flutter and React Native
First, let’s cover the basic (yet essential) details about Flutter and React Native.
What is Flutter?
Flutter is a portable UI toolkit. In other words, it’s a comprehensive app Software Development Kit (SDK), complete with widgets and tools.
What’s Flutter for?
Flutter enables cross-platform app development.
It gives developers an easy way to build and deploy visually attractive, natively-compiled applications for mobile (iOS, Android), web, and desktop – all using a single codebase (source: official Flutter website).
* Please note:
- When it comes to developing desktop apps with Flutter, the API is still in the development stage. Google is working on extending Flutter to support desktop as a target environment, allowing developers to create macOS, Windows, and Linux applications with the technology.
In the long run, this effort will lead to a fully integrated solution where developers can create apps for desktop platforms as they do for mobile platforms – at the time of writing, however, the solution is in development (source).
- Flutter for Web is currently available as a technical preview only. Flutter for Web is a code-compatible implementation of Flutter that allows you to compile existing Flutter code written in Dart into a client experience that can be embedded in the browser and deployed to any web server. You can use all the features of Flutter, and you don’t need a browser plug-in (source).
A little more about Flutter…
- It’s free and open source
- It’s based on Dart – a fast, object-oriented programming language (Google released Dart 2.3 with new support for UI-as-code features – note that Dart is now in its 2.6 version). Dart is relatively new, and is easy to learn – especially for experienced developers more familiar with Java and C#
- The architecture is based on the very popular reactive programming (it follows the same style as React)
- It provides its own widgets, drawn from its own high-performance rendering engine – these are fast, attractive and customizable
- Thanks to the widget experience, Flutter apps have a great look and feel (while you can still create your own custom app design using readily-available UI elements that follow specific platform guidelines)
Who created Flutter?
A team at Google built Flutter.
But as an open-source project, both Google and the Flutter community contribute to its development.
How mature is Flutter?
A brief history of Flutter:
- February 2018, Mobile World Congress – First beta release of Flutter
- April 2018, Google I/O – Flutter beta 2 release
- May 2018, Google I/O – Flutter beta 3 release
- Flutter joins GitHub’s top 100 repos
- June 2018 – Flutter Preview 1 release
- September 2018 – Flutter Preview 2 release
- November 2018 — Dart 2.1 release
- December 2018, Google I/O – Flutter 1.0 release
- A crucial milestone for the technology – since Dec. 2018, Flutter has been considered as stable and ready for production
- February 2019, Mobile World Congress – Flutter 1.2 release
- May 2019, Mobile World Congress:
- July 2019, Flutter 1.7 release
- September 2019, Flutter 1.9 release
As you can see, Google shifted from the Flutter beta version to the final stages of stabilization for Flutter 1.0 at a rapid pace.
Better still, since the release of Flutter 1.0, the team hasn’t rested on its laurels. It has actively worked on making the toolkit stronger and more resilient – prioritizing enhanced stability, performance, and quality.
Moreover, Flutter 1.5 includes hundreds of changes in response to developer feedback (source).
Flutter is now one of the top 20 active software repositories on GitHub (16th place as of December 11, 2019), which proves the developer community uses it and continues to contribute to its improvement.
In summary, Flutter remains a fledgling technology.
Yet, given the pace of Flutter’s improvements – and its explosive popularity – we can say with confidence that it’s impressively stable and mature for its age.
And judging by the rate of development, we expect to see Flutter for Web become stable within 12-months, as well.
What popular apps are made with Flutter?
For more examples of top Flutter apps, read this article > Top Apps Made with Flutter – 17 Stories by Developers and Business Owners
What is React Native?
React Native is an open-source mobile application framework that uses JavaScript.
What is React Native for?
React Native is an effective framework for:
- Cross-platform development
- Building mobile apps using JavaScript language
- Developing applications for both Android and iOS using a single codebase
- Using the same design as React
* Please note:
- Apps created using React Native are not mobile web apps. React Native uses the same fundamental UI building blocks as regular iOS and Android apps: this means that instead of building in Java, Kotlin, or Swift – you’re putting the same building blocks together, using JavaScript and React (source).
- React Native uses components that are analogous to widgets in Flutter.
To develop web and desktop applications with React Native, it’s best to use external libraries (as detailed in this paragraph).
Who created React Native?
Facebook created React Native.
How mature is React Native?
A brief history of React Native:
- Summer 2013, Facebook hackathon – React Native started as an internal Facebook project
- January 2015, React.js Conference – React Native 1 Preview release
- March 2015, F8 Conference – Official Launch of React Native
- Facebook declares React Native, ‘open for use and available on Github’
Looking at the above, two things are for certain: React Native is older than Flutter, and it boasts a bigger community. Not to mention the fact that the Facebook team has had plenty of time to stabilize the API as well as focus on fixing any underlying issues.
And let’s not forget – Facebook is working on several other notable enhancements as well:
- Lean Core – reducing an app’s size by moving optional components/features to separate repositories (to add to an app as/when needed)
- TurboModules – for improved handling of native modules
- React Native Fabric – re-architected UI layer
ref: https://www.thedroidsonroids.com/blog/flutter-vs-react-native-what-to-choose-in-2020