Flutter (software)
![]() | |
Original author(s) | |
---|---|
Developer(s) | Google and community |
Initial release | Alpha (v0.0.6) / May 2017[1] |
Stable release | Flutter 1.0 / December 4, 2018[2]
|
Preview release | |
Written in | C, C++, Dart and Skia Graphics Engine[5] |
Platform | Development: Windows, MacOS and Linux, Target: Android, iOS and Google Fuchsia |
Type | Application framework |
Website | flutter |
Flutter is an open-source mobile application development SDK created by Google. It is used to develop applications for Android and iOS, as well as being the primary method of creating applications for Google Fuchsia.[6]
Contents
History
The first version of Flutter was known as "Sky" and ran on the Android operating system. It was unveiled at the 2015 Dart developer summit, with the stated intent of being able to render consistently at 120 frames per second.[7] During the keynote of Google Developer Days in Shanghai, Google announced Flutter Release Preview 2 which is the last big release before Flutter 1.0.[8] On December 4th, 2018, Flutter 1.0 was released at the Flutter Live event, denoting the first "stable" version of the Framework.
Framework architecture
The major components of Flutter include:
- Dart platform
- Flutter engine
- Foundation library
- Design-specific widgets
Dart platform
Flutter apps are written in the Dart language and make use of many of the language's more advanced features.[9]
On Android, and on Windows, macOS and Linux via the semi-official Flutter Desktop Embedding project, Flutter runs in the Dart virtual machine which features a just-in-time execution engine. Due to App Store restrictions on dynamic code execution, Flutter apps use ahead-of-time (AOT) compilation on iOS.[10]
A notable feature of the Dart platform is its support for "hot reload" where modifications to source files can be injected into a running application. Flutter extends this with support for stateful hot reload, where in most cases changes to source code can be reflected immediately in the running app without requiring a restart or any loss of state.[11] This feature as implemented in Flutter has received widespread praise[citation needed].
Flutter engine
Flutter's engine, written primarily in C++, provides low-level rendering support using Google's Skia graphics library. Additionally, it interfaces with platform-specific SDKs such as those provided by Android and iOS.[9] The Flutter Engine is a portable runtime for hosting Flutter applications. It implements Flutter's core libraries, including animation and graphics, file and network I/O, accessibility support, plugin architecture, and a Dart runtime and compile toolchain. Most developers will interact with Flutter via the Flutter Framework, which provides a modern, reactive framework, and a rich set of platform, layout and foundation widgets.
Foundation library
The Foundation library, written in Dart, provides basic classes and functions which are used to construct applications using Flutter, such as APIs to communicate with the engine.[9][12]
Widgets
UI design in Flutter typically involves assembling and/or creating various widgets. A widget in Flutter represents an immutable description of part of the user interface; all graphics, including text, shapes, and animations are created using widgets. More complex widgets can be created by combining many simpler ones.
However, the use of widgets is not strictly required to build Flutter apps. An alternative option is to use the Foundation library's methods directly, interfacing with "canvas" commands to draw shapes, text, and imagery directly to the screen. This property of Flutter has been utilized in a few frameworks, such as the open-source Flame game engine.
Design-specific widgets
The Flutter framework contains two sets of widgets which conform to specific design languages. Material Design widgets implement Google's design language of the same name, and Cupertino widgets imitate Apple's iOS design.[9][13][14]
References
- ^ Chris Bracken. "Release v0.0.6: Rev alpha branch version to 0.0.6, flutter 0.0.26 (#10010) · flutter/flutter". GitHub. Retrieved 2018-08-08.
- ^ Google Developers (2018-12-04). "Flutter 1.0: Google's Portable UI Toolkit". Google Developers. Retrieved 2018-12-04.
- ^ https://developers.googleblog.com/2018/09/flutter-release-preview-2-pixel-perfect.html
- ^ https://github.com/flutter/flutter/wiki/Changelog
- ^ "FAQ - Flutter". Retrieved 2018-08-08.
- ^ "Google's "Fuchsia" smartphone OS dumps Linux, has a wild new UI". Ars Technica.
- ^ Amadeo, Ron (1 May 2015). "Google's Dart language on Android aims for Java-free, 120 FPS apps". Ars Technica.
- ^ "Google Announced Flutter Release Preview 2". Apptunix.
- ^ a b c d "Technical Overview - Flutter". flutter.io. Retrieved 2017-12-13.
- ^ stephenwzl (2018-08-01). "Flutter's Compilation Patterns". ProAndroidDev. Retrieved 2018-12-06.
- ^ Lelel, Wm (26 February 2018). "Why Flutter Uses Dart". HackerNoon. Retrieved 5 December 2018.
- ^ "foundation library - Dart API". docs.flutter.io. Retrieved 2017-12-13.
- ^ "Material Design Widgets - Flutter". flutter.io. Retrieved 2017-12-13.
- ^ "Cupertino (iOS-style) Widgets - Flutter". flutter.io. Retrieved 2017-12-13.