
fc5dae7980...2409dda413
git log fc5dae798025d82f4931a5e2538736e0195ed37d..2409dda413f156243ed153d3b3f046f9c7d43c5e --no-merges --oneline
2409dda41 Roll fuchsia/sdk/core/mac-amd64 from krOfE-omNi34-7rwppwso1EdS03nxhIoYlP241wGj2UC to SjR5fqBfe7qxjHNWDZx6381UbPUcw78mDI9dFAIN-Y4C (flutter/engine#10170)
682e98116 Roll src/third_party/skia 19fd32891f57..e81dd40406b8 (1 commits) (flutter/engine#10169)
c3e808d1f Roll fuchsia/sdk/core/linux-amd64 from Av4jSk_2K0kEEj_Ci9oDpT1W9mJkfXL7gSi7xpN9TnQC to Ve72ZopgphfY0d_ROG21MI0EPX695oWIiMzxxK3fWk8C (flutter/engine#10168)
63286c13b Roll fuchsia/sdk/core/mac-amd64 from tp7OlQgwK8ZJKfwrZOw0HLkwXb2F1Zu9GF6gFeDIbXcC to krOfE-omNi34-7rwppwso1EdS03nxhIoYlP241wGj2UC (flutter/engine#10167)
55b6cac8b Roll fuchsia/sdk/core/linux-amd64 from aYeKcHzstlAmKW-JEPrBlTBATqMz_rAS4o_BtvhnRKQC to Av4jSk_2K0kEEj_Ci9oDpT1W9mJkfXL7gSi7xpN9TnQC (flutter/engine#10166)
3c893afac Roll src/third_party/skia 6f615d6ebf9c..19fd32891f57 (1 commits) (flutter/engine#10165)
161e93143 Roll fuchsia/sdk/core/mac-amd64 from NpXmT8OnPFwY7SNBfxhxCL_IIzAnuav2gQ2GoWgZlX8C to tp7OlQgwK8ZJKfwrZOw0HLkwXb2F1Zu9GF6gFeDIbXcC (flutter/engine#10163)
7df475554 Roll src/third_party/skia 1b53191539fc..6f615d6ebf9c (2 commits) (flutter/engine#10162)
4ba5cf884 Roll fuchsia/sdk/core/linux-amd64 from 343SsgVihcggviIigVC3WKmGJMWqASKDF0WKMZAy4ygC to aYeKcHzstlAmKW-JEPrBlTBATqMz_rAS4o_BtvhnRKQC (flutter/engine#10161)
8d1bd9ece Roll fuchsia/sdk/core/mac-amd64 from gAv025of19MDIqAyY24hyZKFb8wFRrm3jsJmCEHYKL0C to NpXmT8OnPFwY7SNBfxhxCL_IIzAnuav2gQ2GoWgZlX8C (flutter/engine#10159)
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 (cbracken@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.