From 151fad7e844fe3de07258ffae95a91d51db0e239 Mon Sep 17 00:00:00 2001 From: Brian Hoffmann Date: Tue, 1 Jun 2021 14:48:17 +0200 Subject: [PATCH 1/2] Add Flutter --- radar/2021-01-01/flutter.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 radar/2021-01-01/flutter.md diff --git a/radar/2021-01-01/flutter.md b/radar/2021-01-01/flutter.md new file mode 100644 index 0000000..6c9f679 --- /dev/null +++ b/radar/2021-01-01/flutter.md @@ -0,0 +1,18 @@ +--- +title: "Flutter" +ring: assess +quadrant: languages-and-frameworks + +--- + +[Flutter](https://flutter.io) allows writing native applications for different platforms with a single code base in [Dart](https://dart.dev). + +It provides stable platform implementations for both major mobile platforms iOS and Android. +With [Flutter on the Web](https://flutter.dev/web) it is possible to build single-page applications (SPA) out of the same code with full support for service workers. +The [Desktop](https://flutter.dev/desktop) (Windows, Mac, Linux) platform is currently still in beta (as of mid 2021). + +The compilation into native platform code prevents from bottleneck-issues due context switching and runtime bridging, which can be found in other cross-platform frameworks like [React Native](https://reactnative.dev). + +Comparing to a Javascript-based PWA, Flutter's approach promises a better performance and energy-efficiency. + +We gathered first positive experience with small applications, which used the Alpha and Beta state of Flutter for Linux (x64) and Web by the time of development. We plan to continue to assess the cross-platform benefits for future projects. \ No newline at end of file From 5339ff8345d3e4974cb5d37bb211dfa925bfc07b Mon Sep 17 00:00:00 2001 From: Brian Hoffmann Date: Wed, 9 Jun 2021 09:36:50 +0200 Subject: [PATCH 2/2] Remove future plans --- radar/2021-01-01/flutter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radar/2021-01-01/flutter.md b/radar/2021-01-01/flutter.md index 6c9f679..407a58b 100644 --- a/radar/2021-01-01/flutter.md +++ b/radar/2021-01-01/flutter.md @@ -15,4 +15,4 @@ The compilation into native platform code prevents from bottleneck-issues due co Comparing to a Javascript-based PWA, Flutter's approach promises a better performance and energy-efficiency. -We gathered first positive experience with small applications, which used the Alpha and Beta state of Flutter for Linux (x64) and Web by the time of development. We plan to continue to assess the cross-platform benefits for future projects. \ No newline at end of file +We gathered first positive experience with small applications, which used the Alpha and Beta state of Flutter for Linux (x64) and Web by the time of development.