Find a file
engine-flutter-autoroll 6b2e939480
Roll engine 82765aa77db9..a1a2129bc469 (13 commits) (#30209)
82765aa77d...a1a2129bc4

git log 82765aa77db9621dfbc50801ee2709aa0a00e04d..a1a2129bc4696e66510be984fd7908eae51eb98f --no-merges --oneline
a1a2129bc GN Format all files in the engine. (flutter/engine#8369)
82c910414 Remove old Fuchsia external mem,sem extensions
6d1a6a4f4 Allow per-platform customization of the default Skia font manager (flutter/engine#8358)
3de50b8d2 Roll src/third_party/skia 84a53268af92..7eeb74fdfd84 (3 commits) (flutter/engine#8367)
65837ab32 Roll src/third_party/skia a2cec203eea8..84a53268af92 (1 commits) (flutter/engine#8366)
ada0a8e2b Roll src/third_party/skia 57b7a792bb6f..a2cec203eea8 (1 commits) (flutter/engine#8365)
9729f1ae3 Roll src/third_party/skia bf4229cc10a1..57b7a792bb6f (5 commits) (flutter/engine#8364)
23e0c3758 Roll src/third_party/skia 01fe26360660..bf4229cc10a1 (6 commits) (flutter/engine#8363)
fd0b44045 Roll src/third_party/skia cc8c7bee7925..01fe26360660 (10 commits) (flutter/engine#8361)
96c975163 Rename threshold to access_threshold (flutter/engine#8354)
09a67fe60 update buildroot dep for e2ca4571fa (flutter/engine#8359)
602b61213 Reduce z-fighting on Scenic (flutter/engine#8318)
b53e436f9 Roll src/third_party/dart a977273262..f29e100f42 (8 commits)

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 (bmparr@google.com), and stop
the roller if necessary.
2019-03-29 17:25:41 -04:00
.github Update PULL_REQUEST_TEMPLATE.md (#29621) 2019-03-28 17:44:58 -07:00
bin Roll engine 82765aa77db9..a1a2129bc469 (13 commits) (#30209) 2019-03-29 17:25:41 -04:00
dev roll engine to 82765aa77db9621dfbc50801ee2709aa0a00e04d (#30198) 2019-03-29 12:41:58 -07:00
examples Intercept errors thrown by synchronous Completers in image resolution. (#30139) 2019-03-29 10:05:18 -07:00
packages Made the showMenu() position parameter required (#30206) 2019-03-29 14:15:03 -07:00
.cirrus.yml Change -c to --enable-asserts (#30055) 2019-03-27 12:31:04 -07:00
.gitattributes Add git config option to automatically convert CRLF to LF (#8122) 2017-02-14 10:21:33 -08:00
.gitignore select ResidentCompiler during FlutterDevice initialization (#28603) 2019-03-07 11:02:42 -08:00
analysis_options.yaml set literal conversions (#27811) 2019-03-06 11:05:16 -08:00
AUTHORS Update AUTHORS to add Volodymyr Lykhonis (#24889) 2019-02-20 20:43:17 -08:00
CODE_OF_CONDUCT.md Fix spelling typo (#25514) 2019-01-03 15:51:45 -05:00
CONTRIBUTING.md Reorganize contributor documentation (#23963) 2018-11-06 13:41:09 -08:00
dartdoc_options.yaml Remove snippets snapshotting hack from dartdoc generation. (#24812) 2018-11-27 22:31:49 -08:00
flutter_console.bat Remove color command from flutter_console.bat (#23880) 2018-11-02 14:23:59 -07:00
LICENSE Wrap lines at 80 characters (#26285) 2019-01-29 16:13:27 +01:00
PATENTS Add a file describing Google's commitments with regard to patents and this project (#8632) 2017-03-08 16:40:36 -08:00
README.md Changed flutter.dev to flutter.io on each link. (#28888) 2019-03-11 10:16:49 -07:00

Flutter Flutter logo

Gitter Channel Build Status - Cirrus

Build beautiful native apps in record time

Flutter is Googles 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.dev

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.

Make a change in your code, and your app changes instantly.

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.

Brand-first shopping design Fitness app design

Contact app design iOS chat app design

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.