Flutter (software)

From Wikipedia, the free encyclopedia
Flutter
Google-flutter-logo.svg
Original author(s)Google
Developer(s)Google and community
Initial releaseAlpha (v0.0.6) / May 2017; 4 years ago (2017-05)[1]
Stable release
2.8.0[2] Edit this on Wikidata / 9 December 2021; 1 month ago (9 December 2021)
Repository
Written inDart[3]
PlatformAndroid, iOS, Google Fuchsia, Web platform, Linux, macOS and Windows
TypeApplication framework
LicenseNew BSD License
Websiteflutter.dev

Flutter is an open-source UI software development kit created by Google. It is used to develop cross platform applications for Android, iOS, Linux, Mac, Windows, Google Fuchsia, Web platform,[4] and the web from a single codebase.[5]

First described in 2015,[citation needed] Flutter was released in May 2017.[1]

IDE Usage[]

In order to import or build a new flutter project, the following IDEs can be used:

History[]

The first version of Flutter was known by the codename "Sky" and ran on the Android operating system. It was unveiled at the 2015 Dart developer summit[6] 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 in September 2018, Google announced Flutter Release Preview 2, which was the last big release before Flutter 1.0. On December 4th of that year, Flutter 1.0 was released at the Flutter Live event, denoting the first "stable" version of the Framework. On December 11, 2019, Flutter 1.12 was released at the Flutter Interactive event.[8]

On May 6, 2020, the Dart software development kit (SDK) in version 2.8 and the Flutter in version 1.17.0 were released, where support was added to the Metal API, improving performance on iOS devices (approximately 50%), new Material widgets, and new network tracking.

On March 3, 2021, Google released Flutter 2 during an online Flutter Engage event. This major update brought official support for web-based applications with new CanvasKit renderer and web specific widgets, early-access desktop application support for Windows, macOS, and Linux and improved Add-to-App APIs.[9] This release included sound null-safety, which caused many breaking changes and issues with many external packages, but the Flutter team included instructions to mitigate these changes as well.[10]

On September 8th, 2021, the Dart SDK in version 2.14 and Flutter version 2.5 were released by Google. The update brought improvements to the Android Full-Screen mode and the latest version of Google's Material Design called Material You. Dart received two new updates, the newest lint conditions have been standardized and preset as the default conditions as well Dart for Apple Silicon is now stable.[11][12]

Framework architecture[]

The major components of Flutter include:

  • Dart platform
  • Flutter engine
  • Foundation library
  • Design-specific widgets
  • Flutter Development Tools (DevTools)

Dart platform[]

Flutter apps are written in the Dart language and make use of many of the language's more advanced features.[13]

On Windows, macOS, and Linux[14] Flutter runs in the Dart virtual machine, which features a just-in-time execution engine. While writing and debugging an app, Flutter uses Just In Time compilation, allowing for "hot reload", with which 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 are reflected immediately in the running app without requiring a restart or any loss of state.[15]

For better performance, release versions of Flutter apps targeting Android and iOS are compiled with ahead-of-time (AOT) compilation.[16]

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.[13] 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 interact with Flutter via the Flutter Framework, which provides a reactive framework and a set of platform, layout, and foundation widgets.

Foundation library[]

The Foundation library, written in Dart, provides basic classes and functions that are used to construct applications using Flutter, such as APIs to communicate with the engine.[13][17]

Design-specific widgets[]

The Flutter framework contains two sets of widgets that conform to specific design languages: Material Design widgets implement Google's design language of the same name, and Cupertino widgets implement Apple's iOS Human interface guidelines.[13][18][19][20]

Widgets[]

Flutter uses a variety of widgets to deliver a fully functioning application. These widgets are Flutter's framework architecture.[21] Flutter's Widget Catalog provides a full explanation and API on the framework.

Basics of Widgets in Flutter[]

Widgets are generally defined in three basic types: Stateful widgets, Stateless widgets, and Inherited widgets. Being the central class hierarchy in the Flutter framework the three basic types of widgets are used in the construction of every Flutter application. [22] Although all the instances of a widget are immutable, the Stateful widget allows the interaction between user and application. By giving access to the method setState, the state can be maintained in separate state objects. Alternatively, the Stateless widget acts as a constant, and before anything displayed can be changed, the widget has to be recreated. The Inherited widget works by allowing another widget to subscribe to the Inherited widget's state allowing the state to be passed down to its children.[23]

See also[]

References[]

  1. ^ a b 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.
  2. ^ https://www.infoworld.com/article/3644228/flutter-28-boosts-mobile-performance.html.
  3. ^ "FAQ - Flutter". Retrieved 2018-08-08.
  4. ^ "Google's "Fuchsia" smartphone OS dumps Linux, has a wild new UI". Ars Technica.
  5. ^ Amadeo, Ron (2018-02-27). "Google starts a push for cross-platform app development with Flutter SDK". Ars Technica. Retrieved 2021-06-11.{{cite web}}: CS1 maint: url-status (link)
  6. ^ "Sky: An Experiment Writing Dart for Mobile (Dart Developer Summit 2015)".
  7. ^ Amadeo, Ron (1 May 2015). "Google's Dart language on Android aims for Java-free, 120 FPS apps". Ars Technica.
  8. ^ "Flutter: the first UI platform designed for ambient computing". Flutter blog. Retrieved 2019-12-11.
  9. ^ "Version 2 of Google's Flutter toolkit adds support for desktop and web apps". TechCrunch. Retrieved 2021-03-06.
  10. ^ "Migrating to null safety". dart.dev. Retrieved 2022-02-04.
  11. ^ Sells, Chris (2021-09-08). "What's new in Flutter 2.5". Flutter. Retrieved 2022-02-04.
  12. ^ "Flutter 2.5.0 release notes". docs.flutter.dev. Retrieved 2022-02-04.
  13. ^ a b c d "Technical Overview - Flutter". flutter.dev. Retrieved 2017-12-13.
  14. ^ "Canonical enables Linux desktop app support with Flutter". Ubuntu. Retrieved 2020-07-09.
  15. ^ Lelel, Wm (26 February 2018). "Why Flutter Uses Dart". HackerNoon. Retrieved 5 December 2018.
  16. ^ stephenwzl (2018-08-01). "Flutter's Compilation Patterns". ProAndroidDev. Retrieved 2018-12-06.
  17. ^ "foundation library - Dart API". docs.flutter.dev. Retrieved 2017-12-13.
  18. ^ "Material Design Widgets - Flutter". flutter.dev. Retrieved 2017-12-13.
  19. ^ "Cupertino (iOS-style) Widgets - Flutter". flutter.dev. Retrieved 2017-12-13.
  20. ^ "Human Interface Guidelines". developer.apple.com. Retrieved 2019-10-08.
  21. ^ "Introduction to widgets". flutter.dev. Retrieved 2020-10-08.
  22. ^ "Widget class - widgets library - Dart API". api.flutter.dev. Retrieved 2021-10-04.
  23. ^ K, Pradeep (2020-08-14). "What is the difference between stateless and stateful widgets? >>Flutter". DevOpsSchool.com. Retrieved 2021-10-04.

Flutter Application Development

External links[]


Retrieved from ""