engine-flutter-autoroll 53a1f225ae
Roll engine c41bbc63d955cc7056a162957ac4eeeca6647dc2..b43178e3d683ce7cacfda541837aca044e0ef5b4 (14 commits) (#37274)
c41bbc63d9...b43178e3d6

git log c41bbc63d955..b43178e3d683 --no-merges --oneline
b43178e3d Roll fuchsia/sdk/core/mac-amd64 from fuchsia/sdk/core/mac-amd64:Z7vUHOlojg6n7o-K4Knm474YKdmi1a8pX7Klq_YmkpUC to fuchsia/sdk/core/mac-amd64:kSzcB40iCqsXbCka_VUf4jB5iRl2G9gLM_xDbbGg5GwC (flutter/engine#10270)
f8d122bfc Remove Dead Scenic Clipping Code Path. (flutter/engine#10242)
7436f693a Roll src/third_party/skia e9cb76221597ac9e9b0bf009ab1a843da8428d83..6e86c1b05eeedc3b6be0e98001b7b5d6bab71b74 (16 commits) (flutter/engine#10266)
6bd2f5319 [dart-roll] Roll dart sdk to 80c4954d4d1d2a257005793d83b601f3ff2997a2 (flutter/engine#10265)
4c6948a88 Android Embedding Refactor 38: Removed AssetManager from DartEntrypoint. (flutter/engine#10250)
b18105f57 Roll fuchsia/sdk/core/linux-amd64 from fuchsia/sdk/core/linux-amd64:cYX6VeZcy3RWhV8mZIVF8MI5NvcUSgFRLRZMKpfWxTMC to fuchsia/sdk/core/linux-amd64:pGTb76UZ-PsJzdatSNkJIkEGLESaGa_S2wtZfgHPU5EC (flutter/engine#10264)
6834deb2b Roll fuchsia/sdk/core/mac-amd64 from fuchsia/sdk/core/mac-amd64:P-V-0DXgsN-0uCWtbyqNO-do3JScrAvZ3z1_Vj5xdagC to fuchsia/sdk/core/mac-amd64:Z7vUHOlojg6n7o-K4Knm474YKdmi1a8pX7Klq_YmkpUC (flutter/engine#10262)
b6fe15d60 [fuchsia] Bundle architecture specific gen_snapshots (flutter/engine#10261)
a6a7c8547 [fuchsia] Add arm64 builds for flutter and dart runner (flutter/engine#10260)
e77e4f0e0 [fuchsia] Update buildroot to support arm64 (flutter/engine#10240)
cf46f88e9 Roll src/third_party/skia 9dc0b9e2f86a..e9cb76221597 (12 commits) (flutter/engine#10259)
0d66b3251 [fuchsia] Start building dart_patched_sdk (flutter/engine#10246)
dfe68a0f2 Roll fuchsia/sdk/core/linux-amd64 from 7FSBCYS5vCVwpiozstnbIO6K7sCFQ87UYwo6NkeNrCIC to cYX6VeZcy3RWhV8mZIVF8MI5NvcUSgFRLRZMKpfWxTMC (flutter/engine#10258)
04c18c6f0 Roll fuchsia/sdk/core/mac-amd64 from rJ53P95WbHakJemuGkRE3VOdlvohKPI91VcydLL0n2MC to P-V-0DXgsN-0uCWtbyqNO-do3JScrAvZ3z1_Vj5xdagC (flutter/engine#10256)

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.
2019-07-31 09:58:28 -04:00
2019-01-03 15:51:45 -05:00
2019-01-29 16:13:27 +01: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.

Description
A vendored version of the flutter engine for firka :3
Readme 323 MiB
Languages
Dart 75.4%
C++ 16.4%
Objective-C++ 2.7%
Java 2.7%
Objective-C 0.6%
Other 1.8%