The Wayback Machine - http://web.archive.org/web/20191003172557/https://github.com/flutter/flutter
Skip to content
Flutter makes it easy and fast to build beautiful mobile apps.
Dart Java Objective-C Shell Batchfile HTML
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Label bugs created via the SUPPORT template (#40993) Sep 20, 2019
bin Roll engine aa8fcbb65283..73dd5a33d9d1 (4 commits) (#41856) Oct 2, 2019
dev Add shortcuts and actions for default focus traversal (#40186) Oct 2, 2019
examples Update minimum build_runner version and enable incremental builder (#… Sep 29, 2019
packages Return WidgetSpans from getSpanForPosition (#40635) Oct 2, 2019
.cirrus.yml Move commands into their own shard (#39140) Oct 2, 2019
.codecov.yml dont require diffs to have a percentage coverage greater than the pre… Jul 12, 2019
.gitattributes Add git config option to automatically convert CRLF to LF (#8122) Feb 14, 2017
.gitignore Set DEFINES_MODULE for FlutterPluginRegistrant to generate modulemap (#… Sep 13, 2019
AUTHORS Update AUTHORS (#41211) Sep 24, 2019
CODEOWNERS Updating code owners for golden file changes (#38564) Aug 15, 2019
CODE_OF_CONDUCT.md Mention conduct@flutter.dev (#39150) Aug 25, 2019
CONTRIBUTING.md Update CONTRIBUTING.md (#37645) Aug 20, 2019
LICENSE Wrap lines at 80 characters (#26285) Jan 29, 2019
PATENT_GRANT Rename patent file (#38686) Aug 16, 2019
README.md Updating dart.dev related links (#32641) May 14, 2019
analysis_options.yaml more UI-as-code (#35516) Sep 17, 2019
dartdoc_options.yaml Adds DartPad option to the DartDoc snippet generator. (#39924) Sep 10, 2019
flutter_console.bat Replace flutter.io with flutter.dev (#30562) Apr 5, 2019

README.md

Flutter logo

Build Status - Cirrus Gitter Channel

Flutter is Google's mobile app SDK for crafting high-quality native interfaces on iOS and Android in record time. Flutter works with existing code, is used by developers and organizations around the world, and is free and open source.

Documentation

For announcements about new releases and breaking changes, follow the flutter-announce@googlegroups.com mailing list.

About Flutter

We think Flutter will help you create beautiful, fast apps, with a productive, extensible and open development model.

Beautiful apps

We want to enable designers to deliver their full creative vision without being forced to water it down due to limitations of the underlying framework. Flutter's layered architecture gives you control over every pixel on the screen, and its powerful compositing capabilities let you overlay and animate graphics, video, text and controls without limitation. Flutter includes a full set of widgets that deliver pixel-perfect experiences on both iOS and Android.

Reflectly hero image

Fast apps

Flutter is fast. It's powered by the same hardware-accelerated Skia 2D graphics library that underpins Chrome and Android. We architected Flutter to support glitch-free, jank-free graphics at the native speed of your device. Flutter code is powered by the world-class Dart platform, which enables compilation to native 32-bit and 64-bit ARM code for iOS and Android.

Productive development

Flutter offers stateful hot reload, allowing you to make changes to your code and see the results instantly without restarting your app or losing its state.

Hot reload animation

Extensible and open model

Flutter works with any development tool, but includes editor plug-ins for both Visual Studio Code and IntelliJ / Android Studio. Flutter provides thousands of packages to speed your development, regardless of your target platform. And accessing platform features is easy. Here is a snippet from our interop example:

Future<void> getBatteryLevel() async {
  var batteryLevel = 'unknown';
  try {
    int result = await methodChannel.invokeMethod('getBatteryLevel');
    batteryLevel = 'Battery level: $result%';
  } on PlatformException {
    batteryLevel = 'Failed to get battery level.';
  }
  setState(() {
    _batteryLevel = batteryLevel;
  });
}

Flutter is a fully open source project, and we welcome contributions. Information on how to get started can be found at our contributor guide.

You can’t perform that action at this time.