
b8473cdee1...25c513c72a
git log b8473cdee13d4739afda6b171f4c84280584ab98..25c513c72a5a4b2ef3cf5c174a9541e7f327d2b8 --no-merges --oneline
25c513c72 Roll src/third_party/dart 246430bc8c..52f5e34dbf (5 commits)
b5892b6af Roll src/third_party/skia 44bffbfc1c3e..f2a3f5943e4c (3 commits) (flutter/engine#7749)
f20d8558d Roll src/third_party/skia 26490759e464..44bffbfc1c3e (1 commits) (flutter/engine#7748)
87d3f4281 Roll src/third_party/dart 9c0a73f943..246430bc8c (1 commits)
401d2e24f Roll src/third_party/skia 50e24d7d5f52..26490759e464 (3 commits) (flutter/engine#7745)
aa901fc84 [fuchsia] Update path to fuchsia.ui.scenic (flutter/engine#7731)
c5ab02766 use full git hash for version (flutter/engine#7741)
8c80b404d Roll src/third_party/skia d978b90d205d..50e24d7d5f52 (4 commits) (flutter/engine#7743)
168f92ddd Roll src/third_party/dart 6c680a0ebd..9c0a73f943 (31 commits)
929c8feec Roll src/third_party/skia 8619a34bb875..d978b90d205d (17 commits) (flutter/engine#7736)
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 (chinmaygarde@google.com), and stop
the roller if necessary.
Flutter 
Build beautiful native apps in record time
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
Main site: flutter.io
For announcements about new releases and breaking changes, follow the flutter-announce@googlegroups.com mailing list.
Fast development
Flutter's hot reload helps you quickly and easily experiment, build UIs, add features, and fix bugs. Experience sub-second reload times, without losing state, on emulators, simulators, and hardware for iOS and Android.

Expressive and flexible UI
Quickly ship features with a focus on native end-user experiences. Layered architecture allows full customization, which results in incredibly fast rendering and expressive and flexible designs.
Delight your users with Flutter's built-in beautiful Material Design and Cupertino (iOS-flavor) widgets, rich motion APIs, smooth natural scrolling, and platform awareness.
Browse the widget catalog.
Modern, reactive framework
Easily compose your UI with Flutter's modern functional-reactive framework and rich set of platform, layout, and foundation widgets. Solve your tough UI challenges with powerful and flexible APIs for 2D, animation, gestures, effects, and more.
class CounterState extends State<Counter> {
int counter = 0;
void increment() {
// Tells the Flutter framework that state has changed,
// so the framework can run build() and update the display.
setState(() {
counter++;
});
}
Widget build(BuildContext context) {
// This method is rerun every time setState is called.
// The Flutter framework has been optimized to make rerunning
// build methods fast, so that you can just rebuild anything that
// needs updating rather than having to individually change
// instances of widgets.
return Row(
children: <Widget>[
RaisedButton(
onPressed: increment,
child: Text('Increment'),
),
Text('Count: $counter'),
],
);
}
}
Browse the widget catalog and learn more about the functional-reactive framework.
Access native features and SDKs
Make your app come to life with platform APIs, 3rd party SDKs, and native code. Flutter lets you reuse your existing Java/Kotlin and ObjC/Swift code, and access native features and SDKs on Android and iOS.
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;
});
}
Learn how to use packages or write platform channels to access native code, APIs, and SDKs.
Unified app development
Flutter has the tools and libraries to help you easily bring your ideas to life on iOS and Android. If you don't have any mobile development experience, Flutter is an easy and fast way to build beautiful mobile apps. If you are an experienced iOS or Android developer, you can use Flutter for your views and leverage much of your existing Java/Kotlin/ObjC/Swift investment.
Learn more about what makes Flutter special in the technical overview.
More resources
Join us in our Gitter chat room or join our public mailing list, flutter-dev@googlegroups.com.
How to contribute
To join the team working on Flutter, see our contributor guide.