commit | 6a377ba3e3e47abd1617e3954d41732fd9162433 | [log] [tgz] |
---|---|---|
author | engine-flutter-autoroll <engine-flutter-autoroll@skia.org> | Wed Jul 17 15:46:27 2019 -0400 |
committer | GitHub <noreply@github.com> | Wed Jul 17 15:46:27 2019 -0400 |
tree | 3c654440fc7d842931bbe975d2eb18ca5378ecf9 | |
parent | 03220cacd1f7650ec539928c642f3ff9c4b0324e [diff] |
Roll engine eb248c242574..8849d3092d5a (6 commits) (#36386) https://github.com/flutter/engine/compare/eb248c242574...8849d3092d5a git log eb248c242574e8f7f4d4b4532b6db21dfbe1a5a0..8849d3092d5aa6866501663cd62397f1a1564e67 --no-merges --oneline 8849d3092 Add multi-line flag to semantics (flutter/engine#9850) 91e7a7671 Roll src/third_party/dart 24725a8559..2b3336b51e (108 commits) (flutter/engine#9883) 3cd3e5e72 Roll fuchsia/sdk/core/mac-amd64 from x0S8o-I3LOxltQzGPHsScGKtGALS89j7LYlSANNF-T8C to PHtpiJGexJFgd7sgPTUbFphKES09fzotmtrO2kTHI08C (flutter/engine#9885) cd321ee29 Assign missing headless execution variable (flutter/engine#9855) 3186ffe30 Roll src/third_party/skia 63fdd0191be0..e574f1e409aa (1 commits) (flutter/engine#9882) 9c9daa0cb Roll fuchsia/sdk/core/mac-amd64 from f97PVV8BR3sa4rxRIc-xgvBxd6HYa8mKNp8zGmqqx-UC to x0S8o-I3LOxltQzGPHsScGKtGALS89j7LYlSANNF-T8C (flutter/engine#9881) 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.