- 20 Aug, 2018 4 commits
-
-
liyuqian authored
For #20483
-
Ian Hickson authored
* `flutter analyze` cleanup * Make `--dartdocs` work in all modes. * Make `analyze-sample-code.dart` more resilient. * Add a test for `analyze-sample-code.dart`. * Minor cleanup in related code and files. * Apply review comments * Fix tests
-
Hans Muller authored
-
David Shuckerow authored
-
- 18 Aug, 2018 1 commit
-
-
Ian Hickson authored
* Fixes resulting from audit of issues links I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link. * Update run_test.dart skip this test again since it failed on linux and macos bots
-
- 17 Aug, 2018 4 commits
-
-
matthew-carroll authored
Deprecated CupertinoDialog in favor of a new widget called CupertinoPopupSurface. (#20397)
-
Janice Collins authored
-
Ian Hickson authored
-
Jonah Williams authored
-
- 16 Aug, 2018 3 commits
- 15 Aug, 2018 9 commits
-
-
Martin Kustermann authored
* Reland "Roll engine to version b148e628ec86b3a9a0382e0bcfae73f0390a8232 (#20427)" This is a re-land with downgraded `package:flutter_gallery_assets` version. * Downgrade package:flutter_gallery_assets to 0.1.4 * Change engine.version to 81baff97c29bb08cbf8453a3f9042c5813f84ad3 (which contains an additional fix) * Change engine.version to e3687f70c7ece72000b32ee1b3c02755ba5361ac (since mac tarballs are corrupted on earlier commit)
-
matthew-carroll authored
Rewrote CupertinoAlertDialog to look nearly identical to an alert dialog in iOS. This includes considerations for blur, translucent white background color, button sizing, gap dividers between buttons, and text scaling layout behavior. (#18381)
-
Michael Goderbauer authored
With this change you can now create "wrapping" text fields that do not show the new line button: ```dart new TextField( maxLines: null, keyboardType: TextInputType.text, ); ```
-
Martin Kustermann authored
Reason for revert: The package:flutter_gallery_assets has removed some images which are required for the examples/flutter_gallery, so the gallery build is failing (only discovered after landing, since gallery doesn't seem to get built during github PR presubmit checks)
-
Martin Kustermann authored
This CL * rolls `engine.version` to flutter/engine@b148e628 (which includes dart sdk 2.1.0-dev) * rolls `goldens.version` to flutter/goldens@6c45fafdf (which includes updates due to skia changes in engine) * changes `platform.dill` to `platform_strong.dill` in various places due to flutter/engine@a84b210b * adds explicit `environment: sdk: ">=2.0.0-dev.68 < 3.0.0"` constraints to `pubspec.yaml` and `pubspec.yaml.tmpl` files (since pub defaults to `<2.0.0` if omitted) * upgrades to newer versions of various 3rd party packages (to ensure transitive dependencies have `<3.0.0` sdk constraint)
-
Colin Rofls authored
-
xster authored
-
Ian Hickson authored
* Upgrade everything except matcher. * Roll matcher (and test) * Adjust tests that depend on flutter:test directly to depend on a shim * Require use of package:test shim and remove other references to package:test
-
Jonah Williams authored
-
- 14 Aug, 2018 2 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
- 13 Aug, 2018 2 commits
-
-
Viet Do authored
Allows the cupertino picker to be scroll infinitely by adding builder.
-
creativecreatorormaybenot authored
-
- 12 Aug, 2018 1 commit
-
-
Greg Spencer authored
This adds the animation links for illustrations of the Transition widgets, as well as adding a cross-references to the other transition widgets in the "See also" for each of their docs.
-
- 10 Aug, 2018 4 commits
-
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Natalie Sampsell authored
Adding CupertinoActionSheet, showCupertinoModalPopup
-
Ian Hickson authored
* Visibility widget This attempts to address the confusion around how to hide a widget subtree. * Apply review comments * More clarifications
-
- 09 Aug, 2018 7 commits
-
-
liyuqian authored
This fixes https://github.com/flutter/flutter/issues/18057
-
Natalie Sampsell authored
Add minOverscrollLength to make CupertinoScrollbar thumb correct size in long scroll views.
-
amirh authored
-
Natalie Sampsell authored
-
Anthony authored
* Create test case for disabled state of outline button
-
Jonah Williams authored
-
Harry Terkelsen authored
-
- 08 Aug, 2018 3 commits
-
-
amirh authored
Resizing an AndroidView happens asynchronously (as it requires thread hopping from the ui thread to the platform thread). While waiting for the resize to complete the framework does exactly when the embedded view has been resized. This leads to pretty bad jank as the framework might paint the embedded view with a wrong size. We're working around this by freezing the texture frame while resizing until we are sure that the next frame has the new size. This is how it looks with the workaround: This is how it looks before and after the workaround: Before (janky) | After (less janky) :--------|---------: ![resize_before](https://user-images.githubusercontent.com/1024117/43669639-51bfd0ae-9739-11e8-8cbe-96e36f2460d2.gif) | ![resize_after](https://user-images.githubusercontent.com/1024117/43669647-62e885a6-9739-11e8-8aa4-beb74e979995.gif) This depends on flutter/engine#5938. Additionaly right now the engine completes the resize call immediately, a following PR will change it to complete after a frame with the new size is ready.
-
Jonah Williams authored
-
Natalie Sampsell authored
-