- 21 Jan, 2017 3 commits
-
-
Ian Hickson authored
-
Ian Hickson authored
Removes some TODOs now that https://github.com/flutter/flutter/issues/3648 is fixed.
-
Ian Hickson authored
-
- 20 Jan, 2017 10 commits
-
-
Adam Barth authored
Also, synchronize the docs between Navigator.push and NavigatorState.push (and friends).
-
Adam Barth authored
This patch aligns the iteration patterns used by animations and ChangeNotifier. They now both respect re-entrant removal of listeners and coalesce duplication registrations. (Also, ChangeNotifier notification is no longer N^2). This patch introduces ObserverList to avoid the performance regression that the previous version of this patch caused. Fixes #7533
-
Ian Hickson authored
MockCanvas to use it instead. Currently it only supports a very limited set of drawing features, but adding new ones is easy. Once the feature set is more complete, and we've used this a bunch, if it feels right, this API will get promoted to flutter_test.
-
Adam Barth authored
Also, fix some minor bugs with SynchronousFuture.
-
Todd Volkert authored
-
Adam Barth authored
This patch is part of a series to rationalize our text input classes. See #7031
-
Michael Goderbauer authored
-
Devon Carew authored
* proxy service extension calls through the daemon protocol * add test for app.callServiceExtension
-
Ian Hickson authored
This brings the feature back, since removing it broke one of our more exotic sets of customers.
-
- 19 Jan, 2017 14 commits
-
-
Ian Hickson authored
Also, defer to test package for throttling (this will require a test package update as well). Also, add a lot more instrumentation to --verbose mode for tests, and fix minor trivial things here and there, and add error handling in more places. Also, refactor how coverage works to be simpler and not use statics.
-
Adam Barth authored
We expect TextField to be used much more often than Input. This patch updates our old example code to use TextField instead. See #7031
-
Adam Barth authored
This patch is the first of a series to rationalize the names of the text-input related widgets. See #7031
-
Adam Barth authored
The gallery doesn't actually use `package:flutter_markdown`.
-
Adam Barth authored
-
Todd Volkert authored
When a machine is heavily loaded, it can severely delay the time it takes for the OS to start a process once it's asked to do so. Our 5 second timeout that we were giving the test process to connect to the test harness seemed like plenty of time, were it not for the fact that the test process itself was not being started in time when CPU throttling was in effect. This change updates the test timeout to begin counting only once the test process has been started. We keep the original timeout in play in the event that the test process *never* starts up for some reason, but we up that timeout value to 5 minutes.
-
Michael Goderbauer authored
Previously, the icon in the tooltip demo was black on black background in the dark theme. Now it is white on black background in the dark theme and black on white background in the light theme. fixes #7018
-
Yegor authored
This has been fixed: https://github.com/dart-lang/linter/issues/317
-
Phil Quitslund authored
Stop building (unused) unlinked summaries for packages. Improves update speed considerably (for `n` packages it saves us `n` needless calls to `pub get`).
-
Adam Barth authored
This patch aligns the iteration patterns used by animations and ChangeNotifier. They now both respect re-entrant removal of listeners and coalesce duplication registrations. (Also, ChangeNotifier notification is no longer N^2). Fixes #7533
-
Adam Barth authored
Previously, these classes where in material.dart, which meant they could access private interfaces in that library. This patch moves them out into their own files so that they need to play by the rules of the public API. Fixes #5969
-
Adam Barth authored
It's not correct to set sizedByParent for RenderCustomSingleChildLayoutBox because the delegate's size function might depend on information other than the incoming constraints.
-
Adam Barth authored
Previously the navigator wouldn't always call Route.dispose when it was removed from the tree. After this patch, the navigator remembers popped routes so that it can call dispose on them when it is removed from the tree. Also, improve some error messages around calling dispose() more than once on routes and AnimationControllers. Fixes #7457
-
Adam Barth authored
The only client of this machinery was AnimationController.fling, but it's easier for that function to just create the simulation it needs directly. Fixes #7216
-
- 18 Jan, 2017 5 commits
-
-
Jason Simmons authored
-
Adam Barth authored
I see these errors in Atom on my Mac. I'm not sure why they're not being picked up by the bots.
-
Hans Muller authored
-
Adam Barth authored
-
Matt Perry authored
Overflow handling works with clipping, adding an ellipsis on the last line, or fading the last line. Fixes https://github.com/flutter/flutter/issues/7271
-
- 17 Jan, 2017 6 commits
-
-
Hans Muller authored
-
Ian Hickson authored
It took me a while to figure out what was going on (I was removing a listener after disposal). These asserts helped.
-
Ian Hickson authored
Our test script is getting complicated enough that doing your own testing with a custom engine has become tedious. Now you can just do: ```bash (cd ~/dev/flutter/; FLUTTER_TEST_ARGS=--local-engine=host_debug_unopt dev/bots/test.sh) ``` ...to run all your tests (assuming your flutter repo is in `~/dev/flutter` and your engine in `~/dev/engine`).
-
Adam Barth authored
* MultiTapGestureRecognizer previously would assert if there was no competition. * GestureArenaTeam would always select the first recongizer as the winner even if a later recognizer actually accepted the pointer sequence. * debugPrintStack would fail a type check if maxFrames was non-null. * FractionalOffset.lerp would throw a null-pointer exception if its second argument was null. Also, add a number of tests for previously untested lines of code.
-
Michael Goderbauer authored
This is handy for debugging a test. Communication is logged to: * `flutter_driver_commands_{x}.log`, where {x} is an integer, and * (if requested by user) to stdout fixes #7473
-
Phil Quitslund authored
* Update to Dart SDK `1.22.0-dev.6.0`. * Update SDK summary generation to create spec and strong summaries. * Updated to dev.8.0. * Fixed console out.
-
- 14 Jan, 2017 2 commits
-
-
Reagan Middlebrook authored
Clarifying that Dividers aren't restricted to usage in lists and Drawers. Maybe no one else is confused about this but I didn't realize it until I found them used in the calculator demo (https://github.com/flutter/flutter/blob/8ca4caa4406046a683c0e2d2a5cf6118fa56fef7/examples/flutter_gallery/lib/demo/calculator/home.dart)
-
Adam Barth authored
The demo of the SimpleDialog had some useful code that should really be part of the framework. This patch extracts it into a SimpleDialogOption widget. Remove debugCheckHasScaffold because it is unused. Also, add tests for InkWell, SimpleDialog, and other widgets.
-