Find a file
Shi-Hao Hong c1a118bcc3
Add margins to tooltips (#36963)
* Add margin parameter to tooltips

* Improve tooltip tests to find the tooltip's `Container` instead of arbitrary number of parent calls
2019-07-27 15:20:44 -07:00
.github Updating dart.dev related links (#32641) 2019-05-14 10:35:00 -07:00
bin Roll engine bb2e7a615cb1..38ac5f30a702 (3 commits) (#37062) 2019-07-27 05:32:02 -04:00
dev Added missing png's to demo splash screen project (was caused by global gitignore). (#36997) 2019-07-26 22:11:24 -07:00
examples Revert "Fix the first frame logic in tracing and driver (#35297)" (#37027) 2019-07-26 13:08:36 -07:00
packages Add margins to tooltips (#36963) 2019-07-27 15:20:44 -07:00
.cirrus.yml Updating cirrus fingerprint script to include goldens version (#36690) 2019-07-23 09:30:41 -07:00
.codecov.yml dont require diffs to have a percentage coverage greater than the previous diff (#36090) 2019-07-12 15:10:41 -07:00
.gitattributes
.gitignore initial work on coverage generating script for tool (#29494) 2019-04-18 17:59:14 -07:00
analysis_options.yaml enable lint prefer_if_null_operators (#35745) 2019-07-09 10:53:35 +02:00
AUTHORS added scrimColor property in Scaffold widget (#31025) 2019-05-01 14:50:52 -07:00
CODE_OF_CONDUCT.md
CODEOWNERS Add GitHub CODEOWNERS file to auto-add reviewers by path (#36492) 2019-07-22 10:23:12 -07:00
CONTRIBUTING.md Replace flutter.io with flutter.dev (#30562) 2019-04-05 11:39:30 -07:00
dartdoc_options.yaml
flutter_console.bat Replace flutter.io with flutter.dev (#30562) 2019-04-05 11:39:30 -07:00
LICENSE
PATENTS
README.md Updating dart.dev related links (#32641) 2019-05-14 10:35:00 -07:00

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.