The basic component in a Flutter program is a "widget", which can in turn consist of other widgets. A widget describes the logic, interaction, and design of a UI element with an implementation similar to React. Unlike other cross-platform toolkits such as React Native and Xamarin which draw widgets using native platform components, Flutter renders widgets itself on a per-pixel basis. Flutter has two types of widgets: stateless and stateful. Stateless widgets only update if their inputs change, meaning they otherwise won't need to be rebuilt when other elements of the screen change, while stateful widgets can call the setState() method to update an internal state and redraw. Although widgets are the primary method of constructing Flutter applications, they can also be bypassed in favor of directly drawing on a canvas. This feature has been occasionally used to implement game engines in Flutter.
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. Flutter allows the developer to use either set of widgets on either platform. Developers can use Cupertino widgets on Android.
On March 3, 2021, Google released Flutter 2 during an online Flutter Engage event. It added a Canvas-based renderer for web in addition to the HTML-based renderer and early-access desktop application support for Windows, macOS, and Linux. It also shipped with Dart 2.0 which included support for null-safety. Null safety was initially optional as it was a breaking change and was made mandatory in Dart 3 released in 2023.
On May 12, 2022, Flutter 3 and Dart 2.17 were released with support for all desktop platforms as stable.
.
Amadeo, Ron (2018-02-27). "Google starts a push for cross-platform app development with Flutter SDK". Ars Technica. Archived from the original on 2021-10-08. Retrieved 2021-06-11. https://arstechnica.com/gadgets/2018/02/google-starts-a-push-for-cross-platform-app-development-with-flutter-sdk/
Amadeo, Ron (8 May 2017). "Google's "Fuchsia" smartphone OS dumps Linux, has a wild new UI". Ars Technica. Archived from the original on 26 September 2019. Retrieved 18 March 2018. https://arstechnica.com/gadgets/2017/05/googles-fuchsia-smartphone-os-dumps-linux-has-a-wild-new-ui/
"With Flutter, Google Aims Dart to Mobile App Cross-Development". InfoQ. Archived from the original on 2022-04-28. Retrieved 2022-03-17. https://www.infoq.com/news/2015/12/flutter-dart-cross-platform/
"Google announces Flutter 1.0, the first stable release of its cross-platform mobile development toolkit". Android Police. 2018-12-05. Archived from the original on 2022-05-25. Retrieved 2022-03-17. https://www.androidpolice.com/2018/12/05/google-announces-flutter-1-0-the-first-stable-release-of-its-cross-platform-mobile-development-toolkit/
Claburn, Thomas (3 Mar 2021). "Google's multi-platform app framework Flutter reaches version 2, expands to the web". theregister.com. https://www.theregister.com/2021/03/03/google_allinone_app_framework_flutter/
"Going global at Google Pay with Flutter". Archived from the original on 2024-03-31. Retrieved 2024-04-02. https://flutter.dev/showcase/google-pay
Schoon, Ben (September 26, 2023). "Google Earth gets a redesigned Android app with Projects support, removes Voyager". 9to5google.com. https://9to5google.com/2023/09/26/google-earth-android-redesign-projects/
"Check out the new @googleearth for iOS, Android, and web with UI built using Flutter, all from a single codebase". Archived from the original on 2024-04-02. Retrieved 2024-04-02. https://twitter.com/FlutterDev/status/1708908434068779376
Lardinois, Frederic (11 May 2022). "Google's Flutter 3 adds support for macOS and Linux desktop apps". TechCrunch. On the mobile side, companies like WeChat, ByteDance, Betterment, SHEIN and BMW are now betting on Flutter — as does Google itself. https://techcrunch.com/2022/05/11/googles-flutter-3-adds-support-for-macos-and-linux-desktop-apps/
"Increasing productivity by 33% at ByteDance with Flutter". Archived from the original on 2024-04-02. Retrieved 2024-04-02. https://flutter.dev/showcase/bytedance
Lardinois, Frederic (4 December 2018). "Google's cross-platform Flutter UI toolkit hits version 1.0". TechCrunch. https://techcrunch.com/2018/12/04/googles-cross-platform-flutter-ui-toolkit-hits-version-1-0/
"Alibaba scales China's largest second-hand marketplace with Flutter". Archived from the original on 2024-03-30. Retrieved 2024-04-02. https://flutter.dev/showcase/alibaba-group
"Flutter architectural overview". docs.flutter.dev. Retrieved 2024-07-26. https://docs.flutter.dev/resources/architectural-overview
Claburn, Thomas (12 Nov 2021). "Apps made with Google's Flutter may fritter away CPU cycles. Here's what the web giant intends to do about it". theregister.com. It does so by relying heavily on Skia, a graphics-rendering engine written in C/C++ that uses a device's CPU or GPU to draw app interfaces on its own, without relying on native platform interface libraries. https://www.theregister.com/2021/11/12/googles_flutter_cpu_performance/
Claburn, Thomas (12 Nov 2021). "Apps made with Google's Flutter may fritter away CPU cycles. Here's what the web giant intends to do about it". theregister.com. It does so by relying heavily on Skia, a graphics-rendering engine written in C/C++ that uses a device's CPU or GPU to draw app interfaces on its own, without relying on native platform interface libraries. https://www.theregister.com/2021/11/12/googles_flutter_cpu_performance/
Windmill, Eric; Rischpater, Ray (2020). Flutter in action. Shelter Island, NY: Manning Publications Co. pp. 12, 16. ISBN 9781617296147. 9781617296147
Windmill, Eric; Rischpater, Ray (2020). Flutter in action. Shelter Island, NY: Manning Publications Co. pp. 12, 16. ISBN 9781617296147. 9781617296147
Windmill, Eric; Rischpater, Ray (2020). Flutter in action. Shelter Island, NY: Manning Publications Co. pp. 12, 16. ISBN 9781617296147. 9781617296147
"Introduction to widgets". docs.flutter.dev. Archived from the original on 2022-10-06. Retrieved 2022-10-06. https://docs.flutter.dev/development/ui/widgets-intro
"Flame". flame-engine.org. Archived from the original on 2022-09-27. Retrieved 2022-10-06. https://flame-engine.org/
Anderson, Tim (5 Aug 2020). "Google reports 80% spike of Flutter-built apps in Play Store as 1.20 is released". theregister.com. In general the design style follows Google's Material Design guidelines, making it particularly at home on Android (as you would expect from Google), but there is also support for Cupertino widgets for a native iOS look and feel. https://www.theregister.com/2020/08/05/google_reports_80_increase_in/
"Technical Overview - Flutter". flutter.dev. Archived from the original on 2020-06-16. Retrieved 2017-12-13. https://flutter.dev/technical-overview/
stephenwzl (2018-08-01). "Flutter's Compilation Patterns". ProAndroidDev. Archived from the original on 2020-06-09. Retrieved 2018-12-06. https://proandroiddev.com/flutters-compilation-patterns-24e139d14177
Lardinois, Frederic (25 January 2023). "Google's Flutter showcases new graphics capabilities, WebAssembly and RISC-V support". TechCrunch. https://techcrunch.com/2023/01/25/googles-flutter-showcases-new-graphics-capabilities-webassembly-and-risc-v-support/
Thomsen, Michael (2024-05-14). "Landing Flutter 3.22 and Dart 3.4 at Google I/O 2024". Flutter. Retrieved 2024-05-17. https://medium.com/flutter/io24-5e211f708a37
"Using packages". docs.flutter.dev. Archived from the original on 2022-10-06. Retrieved 2022-10-06. https://docs.flutter.dev/development/packages-and-plugins/using-packages
"Technical Overview - Flutter". flutter.dev. Archived from the original on 2020-06-16. Retrieved 2017-12-13. https://flutter.dev/technical-overview/
"foundation library - Dart API". docs.flutter.dev. Archived from the original on 2020-06-16. Retrieved 2017-12-13. https://docs.flutter.dev/flutter/foundation/foundation-library.html
"Flutter architectural overview". docs.flutter.dev. Retrieved 2024-07-26. https://docs.flutter.dev/resources/architectural-overview
"Impeller rendering engine". docs.flutter.dev. Retrieved 2024-05-17. https://docs.flutter.dev/perf/impeller
Bradshaw, Kyle (January 25, 2023). "Google releases Flutter 3.7, teases future of app development framework". 9to5google.com. https://9to5google.com/2023/01/25/flutter-forward-teaser/
"Technical Overview - Flutter". flutter.dev. Archived from the original on 2020-06-16. Retrieved 2017-12-13. https://flutter.dev/technical-overview/
Amadeo, Ron (1 May 2015). "Google's Dart language on Android aims for Java-free, 120 FPS apps". Ars Technica. Archived from the original on 6 May 2015. Retrieved 13 December 2017. https://arstechnica.com/gadgets/2015/05/googles-dart-language-on-android-aims-for-java-free-120-fps-apps/
Amadeo, Ron (1 May 2015). "Google's Dart language on Android aims for Java-free, 120 FPS apps". Ars Technica. Archived from the original on 6 May 2015. Retrieved 13 December 2017. https://arstechnica.com/gadgets/2015/05/googles-dart-language-on-android-aims-for-java-free-120-fps-apps/
Amadeo, Ron (4 December 2018). "Google bridges Android and iOS development with Flutter 1.0". Ars Technica. https://arstechnica.com/gadgets/2018/12/google-bridges-android-and-ios-development-with-flutter-1-0/
Siddiqui, Aamir (6 May 2020). "Google releases Flutter 1.17 and Dart 2.8 stable SDKs for app development". XDA. Flutter now uses Metal by default when building for supported iOS devices, making Flutter apps run faster. https://www.xda-developers.com/google-flutter-117-dart-2-8-stable-sdk-app-development/
Claburn, Thomas (3 Mar 2021). "Google's multi-platform app framework Flutter reaches version 2, expands to the web". theregister.com. https://www.theregister.com/2021/03/03/google_allinone_app_framework_flutter/
Lardinois, Frederic (3 March 2021). "Version 2 of Google's Flutter toolkit adds support for desktop and web apps". TechCrunch. https://techcrunch.com/2021/03/03/version-2-of-googles-flutter-toolkit-adds-support-for-desktop-and-web-apps/
Lardinois, Frederic (3 March 2021). "Version 2 of Google's Flutter toolkit adds support for desktop and web apps". TechCrunch. https://techcrunch.com/2021/03/03/version-2-of-googles-flutter-toolkit-adds-support-for-desktop-and-web-apps/
Claburn, Thomas (3 Mar 2021). "Google's multi-platform app framework Flutter reaches version 2, expands to the web". theregister.com. https://www.theregister.com/2021/03/03/google_allinone_app_framework_flutter/
Claburn, Thomas (3 Mar 2021). "Google's multi-platform app framework Flutter reaches version 2, expands to the web". theregister.com. https://www.theregister.com/2021/03/03/google_allinone_app_framework_flutter/
Wander, Zachary (3 March 2021). "Dart 2.12 has been released, with null-safety and C interoperability". XDA. https://www.xda-developers.com/dart-2-12-release/
Wander, Zachary (3 March 2021). "Dart 2.12 has been released, with null-safety and C interoperability". XDA. https://www.xda-developers.com/dart-2-12-release/
Claburn, Thomas (9 Dec 2022). "Google's Dart language soon won't take null for an answer". theregister.com. https://www.theregister.com/2022/12/09/google_dart_null_safety/
Claburn, Thomas (11 May 2022). "Google's Flutter app development framework now stable across platforms". theregister.com. https://www.theregister.com/2022/05/11/google_io_flutter_crossplatform_app/
Larabel, Michael (29 October 2024). "Google's Flutter UI Toolkit Forked As Flock". phoronix.com. Retrieved 30 October 2024. https://www.phoronix.com/news/Google-Flutter-UI-Flock-Fork
Krill, Paul. "Google's Flutter framework has been forked". InfoWorld. https://www.infoworld.com/article/3595687/googles-flutter-framework-has-been-forked.html