- 27 Apr, 2016 5 commits
-
-
Devon Carew authored
* move the material_gallery/demos.dart script * rename all_demos.dart to all.dart
-
Seth Ladd authored
* add import guidance to library-level docs * add import docs to other packages * fix review comment * clarify which libraries aren't meant to be directly imported
-
Devon Carew authored
-
Adam Barth authored
-
Adam Barth authored
This patch adds an option to Scaffold to disable resizing the body to avoid the window padding. This lets developers create layouts that are stable when the keyboard overlays the app. Fixes #3565
-
- 26 Apr, 2016 7 commits
-
-
Adam Barth authored
We had a math-o. Fixes #3563
-
Devon Carew authored
* add google analytics * send in the run target type * track device type targets * use the real GA code * review comments * rev to usage 2.0 * rev to 2.2.0 of usage; add tests * review comments
-
Adam Barth authored
Wait until the end of the microtask to tell gesture recognizers that they've won in the gesture arena. This lets recognizers dispose reject themselves at arbitrary times without triggering gestures in awkward call stacks. Fixes #3183
-
Devon Carew authored
* add a benchmarking mode to flutter analyze * change arg names
-
Adam Barth authored
Fixes #3186
-
Adam Barth authored
Fixes #3289
-
Adam Barth authored
-
- 25 Apr, 2016 12 commits
-
-
Adam Barth authored
Previously we were locking down the state even when calling layout in LazyBlock. Now we lock only when building children. Making this work well involved moving the catch out of lockState and into the few callers who actually wanted it. Fixes #3534
-
Adam Barth authored
-
Adam Barth authored
Handle the case of a null body in response.dart
-
Adam Barth authored
We're supposed to return a null string when the HTTP response doesn't have a body. Also handle the case of not having a headers map.
-
Jason Simmons authored
This is currently hidden for development use. It will select artifacts from the android_{Debug,Release}_Deploy output in a local engine build.
-
Hans Muller authored
-
Ian Hickson authored
-
Adam Barth authored
Improve docs for MediaQueryData.size
-
Devon Carew authored
* improve text for devices * nit * tweak text
-
Devon Carew authored
* exclude files from build/ when looking for asset variants * exclude some dirs when creating flx files
-
Adam Barth authored
This would have answered a question we go on flutter-dev. Fixes #3517
-
Devon Carew authored
-
- 24 Apr, 2016 2 commits
-
-
Adam Barth authored
Add Flow layout
-
Adam Barth authored
A flow layout is optimized for reposition children with transformation matrices. A flow layout can animate the position of its children very efficiently.
-
- 23 Apr, 2016 3 commits
-
-
Adam Barth authored
This patch contains a few minor improvements to the framework that I ran across while working on a new layout model.
-
Adam Barth authored
Fixes #3510
-
Adam Barth authored
Somehow I missed these in my previous patch.
-
- 22 Apr, 2016 10 commits
-
-
Adam Barth authored
Fixes #3503
-
Adam Barth authored
Prior to this patch, we were pushing two frames each time the cursor blinked. In turning the cursor on or off, the markNeedsPaint call was triggering another frame to be scheduled because we cleared a bit in the scheduler at the beginning of the frame instead of at the end of the frame. To implement scheduling correctly, we actually need two bits: one for ensureVisualUpdate, which just promises to get to the end of the pipeline soon, and scheduleFrame, which promises to get to the beginning of the pipeline soon. (Reland)
-
Ian Hickson authored
This adds in particular the ability to track the time at which the framework boots up, and the time at which we are confident we have completed the first useful frame.
-
Adam Barth authored
Fixes #3501
-
Adam Barth authored
We don't need this assert anyway.
-
Adam Barth authored
This reverts commit 161f945e. This patch caused a number of regressions. Fixes #3497
-
Ian Hickson authored
The old names were getting silly and started stepping on valuable namespace. The new names are consistent and clear.
-
Viktor Lidholt authored
* Adds NineSliceSprite and optimizes gallery front page
-
Hans Muller authored
* Refactored MaterialApp
-
Hans Muller authored
* Remove IconThemeData.clampedOpacity
-
- 21 Apr, 2016 1 commit
-
-
Ian Hickson authored
This reorders some classes so that this file makes more sense, and adds a bunch of docs. It also makes the following changes: * Move allElements from Instrumentation to TestWidgets. (Instrumentation is going away.) * Remove findElements. * Rename byElement to byElementPredicate * Rename byPredicate to byWidgetPredicate * Implement _WidgetPredicateFinder so that byWidgetPredicate has good messages * Fix one use of byElementPredicate to use byWidgetPredicate.
-