
git@github.com:flutter/engine.git/compare/a29ef660134f...59ac63d3e112 git log a29ef660134f..59ac63d3e112 --no-merges --oneline 2019-07-31 jason-simmons@users.noreply.github.com Ensure that the SingleFrameCodec stays alive until the ImageDecoder invokes its callback (flutter/engine#10297) 2019-07-31 franciscojma@google.com [glfw] Enables replies on binary messenger in glfw embedder (flutter/engine#9948) 2019-07-31 skia-flutter-autoroll@skia.org Roll fuchsia/sdk/core/mac-amd64 from fuchsia/sdk/core/mac-amd64:TAkpmqxKgauDvmpeaOTOAbYsnz1nWuqznTirppN0dGoC to fuchsia/sdk/core/mac-amd64:bswmziOk2a7sku7aG0fnZO7sQOFPK_XBy58QPcqsugwC (flutter/engine#10300) 2019-07-31 skia-flutter-autoroll@skia.org Roll src/third_party/skia c876404e64d2..83d8a949ae22 (6 commits) (flutter/engine#10302) 2019-07-31 garyq@google.com Fix run.start -> run_start (flutter/engine#10295) 2019-07-31 skia-flutter-autoroll@skia.org Roll fuchsia/sdk/core/linux-amd64 from fuchsia/sdk/core/linux-amd64:E8lhQA7KKqhzZkfqaF8zKnqOMy88-Z3lf4uBnUNHa4AC to fuchsia/sdk/core/linux-amd64:2k-0epsqEV14oZvIxpS-jHkPhZa837aSNjEj14wd73MC (flutter/engine#10301) 2019-07-31 dnfield@google.com Make tree green for real this time, I promise. (flutter/engine#10303) 2019-07-31 dnfield@google.com Fix red build again (flutter/engine#10298) 2019-07-31 bkonyi@google.com Roll src/third_party/dart 80c4954d4d..bd049f5b53 (37 commits) (flutter/engine#10294) 2019-07-31 dnfield@google.com fix CI (flutter/engine#10296) 2019-07-31 iska.kaushik@gmail.com [fuchsia] Make cirrus build fuchsia artifacts (flutter/engine#10268) 2019-07-31 dnfield@google.com Add fuchsia.stamp for roller (flutter/engine#10293) 2019-07-31 franciscojma@google.com [macos] Reland function refactor (flutter/engine#10189) 2019-07-31 sjindel@google.com Export FFI from sky_engine. (flutter/engine#10282) 2019-07-31 skia-flutter-autoroll@skia.org Roll src/third_party/skia 6808e2d1faac..c876404e64d2 (6 commits) (flutter/engine#10292) 2019-07-31 skia-flutter-autoroll@skia.org Roll fuchsia/sdk/core/mac-amd64 from fuchsia/sdk/core/mac-amd64:A4Ah4g0K30dWnbolQ7Z3zyXapbAyy3d9l4IeLGAG9YQC to fuchsia/sdk/core/mac-amd64:TAkpmqxKgauDvmpeaOTOAbYsnz1nWuqznTirppN0dGoC (flutter/engine#10291) 2019-07-31 skia-flutter-autoroll@skia.org Roll fuchsia/sdk/core/linux-amd64 from fuchsia/sdk/core/linux-amd64:6j9WXOOtqKZzSKIgQi-12GJ1MYzPDJvq-RLAtpJpGB0C to fuchsia/sdk/core/linux-amd64:E8lhQA7KKqhzZkfqaF8zKnqOMy88-Z3lf4uBnUNHa4AC (flutter/engine#10290) 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 (franciscojma@google.com), and stop the roller if necessary.
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.
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.
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.