Find a file
engine-flutter-autoroll 3703e88792
Roll engine 20d3861ac8e1..05c034e5bb0a (10 commits) (#34621)
20d3861ac8...05c034e5bb

git log 20d3861ac8e1f8f38c8659b16b699d0e63db01b1..05c034e5bb0aebe325801eba6088de16c0d78593 --no-merges --oneline
05c034e5b Update component manifests for ambient replace-as-executable (flutter/engine#9350)
66022ce25 Roll src/third_party/skia 55091020435c..4b203ad7ac02 (6 commits) (flutter/engine#9352)
fcff2d619 Use the DartServiceIsolate status callback to publish the observatory URI to the Android embedder (flutter/engine#9337)
ea7ca9804 Send the isolate service ID from the engine to the embedder (flutter/engine#9324)
675033fc0 Check for invalid indexes when performing InputAdpator backspace. (flutter/engine#9322)
e5918d18f Roll src/third_party/skia 92b81e14d9c2..55091020435c (6 commits) (flutter/engine#9348)
e00ac47f4 Reorganize darwin for shared ios/macOS (flutter/engine#9255)
9da409c0e Fix crash on Huawei device with AndroidView (flutter/engine#9192)
a0f85546f Removed an unused class definition for iOS code. (flutter/engine#9346)
96a1a843c Replace lock_guard with scoped_lock and use class template argument deduction. (flutter/engine#9338)

The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff (liyuqian@google.com), and stop
the roller if necessary.
2019-06-18 14:07:56 -04:00
.github Updating dart.dev related links (#32641) 2019-05-14 10:35:00 -07:00
bin Roll engine 20d3861ac8e1..05c034e5bb0a (10 commits) (#34621) 2019-06-18 14:07:56 -04:00
dev Release diagnostics (#34474) 2019-06-18 11:06:09 -07:00
examples Roll pub dependencies (#33677) 2019-06-13 18:07:16 -07:00
packages Release diagnostics (#34474) 2019-06-18 11:06:09 -07:00
.cirrus.yml Release diagnostics (#34474) 2019-06-18 11:06:09 -07:00
.gitattributes Add git config option to automatically convert CRLF to LF (#8122) 2017-02-14 10:21:33 -08:00
.gitignore initial work on coverage generating script for tool (#29494) 2019-04-18 17:59:14 -07:00
analysis_options.yaml fix bad lint commented out (#33026) 2019-05-20 17:00:45 +02:00
AUTHORS added scrimColor property in Scaffold widget (#31025) 2019-05-01 14:50:52 -07:00
CODE_OF_CONDUCT.md Fix spelling typo (#25514) 2019-01-03 15:51:45 -05:00
CONTRIBUTING.md Replace flutter.io with flutter.dev (#30562) 2019-04-05 11:39:30 -07:00
dartdoc_options.yaml Remove snippets snapshotting hack from dartdoc generation. (#24812) 2018-11-27 22:31:49 -08:00
flutter_console.bat Replace flutter.io with flutter.dev (#30562) 2019-04-05 11:39:30 -07:00
LICENSE Wrap lines at 80 characters (#26285) 2019-01-29 16:13:27 +01:00
PATENTS Add a file describing Google's commitments with regard to patents and this project (#8632) 2017-03-08 16:40:36 -08:00
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.