commit | 9b08effaabb6b0ec29092746ae6fa0a55ebbdb1f | [log] [tgz] |
---|---|---|
author | engine-flutter-autoroll <engine-flutter-autoroll@skia.org> | Tue Jul 16 21:40:27 2019 -0400 |
committer | GitHub <noreply@github.com> | Tue Jul 16 21:40:27 2019 -0400 |
tree | 58f135b24538be4670c3de39ed614592d38b1a17 | |
parent | 36c37ccab5e089e9add6e38ccbcf1c1fffa13ef5 [diff] |
Roll engine 66092d5b02dc..e3e4b26fce0d (6 commits) (#36320) https://github.com/flutter/engine/compare/66092d5b02dc...e3e4b26fce0d git log 66092d5b02dcaf627295c5d5333956ebc82ad53b..e3e4b26fce0de9d4aa870835ffad24e6817a08ce --no-merges --oneline e3e4b26fc Roll fuchsia/sdk/core/mac-amd64 from pwsYtqWGHRP43dB0EyLu7S9R3uGV0dIhulPbnSUDUmcC to xJPmd7maxxcPRu9HpByelwYaqa-v6qipCfy6JhgYS9oC (flutter/engine#9858) 3233f9422 Disable Fuchsia Debug & Release presubmits and only attempt the Profile unopt variant. (flutter/engine#9856) 6e1a3e812 Roll src/third_party/skia a3e2996b0834..947efe28de74 (6 commits) (flutter/engine#9853) 9eed783e9 Selectively enable tests that work on Windows and file issues for ones that don't. (flutter/engine#9852) 7ae3c3e11 Preserve the alpha for VD content by setting a transparent background. (flutter/engine#9849) a3926a3c6 Roll fuchsia/sdk/core/mac-amd64 from 94o0_NIcwi-V68SmUN4hU0fX5_JkMpPU5V8HaFvKWfYC to pwsYtqWGHRP43dB0EyLu7S9R3uGV0dIhulPbnSUDUmcC (flutter/engine#9848) 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 (aaclarke@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.
For announcements about new releases and breaking changes, follow the flutter-announce@googlegroups.com mailing list.
We think Flutter will help you create beautiful, fast apps, with a productive, extensible and open development model.
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.
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.
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.
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.