engine-flutter-autoroll cfb1626b53
Roll engine 292d844de357..740f9160a256 (14 commits) (#39596)
git@github.com:flutter/engine.git/compare/292d844de357...740f9160a256

git log 292d844de357..740f9160a256 --no-merges --oneline
2019-08-31 skia-flutter-autoroll@skia.org Roll src/third_party/skia 15ecdf94fd36..f46c8268bf2b (3 commits) (flutter/engine#11800)
2019-08-31 hterkelsen@users.noreply.github.com Provide a hook for a plugin handler to receive messages on the web (flutter/engine#11796)
2019-08-30 bkonyi@google.com Roll src/third_party/dart 011144b43b..36985859e4 (5 commits)
2019-08-30 skia-flutter-autoroll@skia.org Roll src/third_party/skia a43e2d284b3b..15ecdf94fd36 (6 commits) (flutter/engine#11794)
2019-08-30 bkonyi@google.com Roll src/third_party/dart 0ff52a640c..011144b43b (4 commits)
2019-08-30 30870216+gaaclarke@users.noreply.github.com Started logging warnings if we drop platform messages. (flutter/engine#11792)
2019-08-30 iska.kaushik@gmail.com Roll fuchsia/clang/linux-amd64 from wGyr4... to -mnHl... (flutter/engine#11790)
2019-08-30 skia-flutter-autoroll@skia.org Roll fuchsia/sdk/core/linux-amd64 from fSXZ0... to AySFp... (flutter/engine#11791)
2019-08-30 skia-flutter-autoroll@skia.org Roll fuchsia/sdk/core/mac-amd64 from 57R6s... to _ncZC... (flutter/engine#11786)
2019-08-30 iska.kaushik@gmail.com Roll fuchsia/sdk/core/linux-amd64 from -UaaS... to fSXZ0... (flutter/engine#11784)
2019-08-30 dnfield@google.com completely strip bitcode (flutter/engine#11783)
2019-08-30 iska.kaushik@gmail.com [flutter_runner] Port over all the changes to the dart_runner cmx files (flutter/engine#11776)
2019-08-30 skia-flutter-autoroll@skia.org Roll src/third_party/skia 575699569e91..a43e2d284b3b (6 commits) (flutter/engine#11781)
2019-08-30 bkonyi@google.com Roll src/third_party/dart d4342b9021..0ff52a640c (4 commits)


If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/flutter-engine-flutter-autoroll
Please CC garyq@google.com on the revert to ensure that a human
is aware of the problem.

To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
2019-08-30 23:23:41 -04:00
2019-01-29 16:13:27 +01:00
2019-08-16 16:54:58 +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.

Languages
Dart 75%
C++ 16.5%
Objective-C++ 2.9%
Java 2.8%
Objective-C 0.7%
Other 1.9%