- 11 Jan, 2016 23 commits
-
-
Ian Hickson authored
-
Adam Barth authored
Rename ScrollDirection to Axis
-
Adam Barth authored
We use the ScrollDirection for more than just scrolling. Fixes #151
-
Matt Perry authored
Adds Flutter GCM package
-
Matt Perry authored
-
Adam Barth authored
Always using OpacityLayer for blending
-
Adam Barth authored
We don't know how to accuately compute paint bounds in the render tree. Instead, we can rely on the compositor to compute the paint bounds for us if we use OpacityLayer to do our opacity blends. Fixes the shadow when closing the menu in the stocks app.
-
Adam Barth authored
Rename RenderObject.hasLayer to isRepaintBoundary
-
Adam Barth authored
Also, introduce alwaysNeedsCompositing to force the "needs compositing" bit to true without necessarily introducing a ContainerLayer into the layer tree. A future patch will make use of alwaysNeedsCompositing to optimize opacity layers.
-
Adam Barth authored
DoubleTap gesture asserts when rejected
-
Adam Barth authored
The pointer router was using an iteration pattern that always delivers handleEvent calls even if you remove a route during the iteration. That's awkward to program against and causes trouble for the double-tap gesture. This patch switches PointerRouter to using a re-entrant iteration pattern that supports removing routes (but not adding routes) during the iteration.
-
Ian Hickson authored
Add more debugging options to the stocks app.
-
Adam Barth authored
TabView fails to update tab contents
-
Ian Hickson authored
- Add an option to enable debugPaintSizeEnabled. - Add an option to enable the StatisticsOverlay. - Add support for the StatisticsOverlay in MaterialApp. - Change the layout behaviour of RenderStatisticsBox: - Give it a zero intrinsic width. - Give it an accurate intrinsic height that depends on the flags set. (Also, move the enum to the rendering/ layer from the widgets/ layer to enable this.) - Make the box automatically size itself full-width and the correct height, so that you can actually embed it (though most of the time you'd just put it in a Stack so this doesn't matter as much, really). - Some style nit fixes in statistics_box.dart.
-
Adam Barth authored
When the TabView widget's children change, we don't change the children we give to the PageViewport because we fail to update _items. This patch watches didChangeConfig and updates _items appropriately. Fixes #1134 Fixes #1168
-
Adam Barth authored
Simplify TabView API
-
Adam Barth authored
Instead of taking a builder and a generic type, we can just take a List<Widget>.
-
Ian Hickson authored
Merge Container's width, height, and constraints
-
Ian Hickson authored
Without this, FlatButton ends up using two RenderConstrainedBoxes back to back for no good reason.
-
Ian Hickson authored
tightenWidth(), tightenHeight() => tighten(width:, height:)
-
Ian Hickson authored
Add a note about the firebase/ directory.
-
Ian Hickson authored
This makes it more consistent with tightFor(), and also makes it easier to tighten both directions at once when you're not sure you will always do so (e.g. if you have a height and width that might be null, and want to tighten whichever ones aren't null).
-
Ian Hickson authored
Also, make dev/update_packages.dart skip directories that have no pubspec.yaml, since firebase/ doesn't have one.
-
- 10 Jan, 2016 7 commits
-
-
Ian Hickson authored
AnimatedPositioned
-
Ian Hickson authored
-
Ian Hickson authored
-
Ian Hickson authored
This will allow AnimatedPositioned to reuse all the same logic.
-
Adam Barth authored
Drawer edge swipe convers entire screen
-
Ian Hickson authored
Refactor the Stocks app's settings
-
Ian Hickson authored
This will make it much easier to add more settings.
-
- 09 Jan, 2016 5 commits
-
-
Ian Hickson authored
Fix crazy assertion.
-
Ian Hickson authored
Not sure what I was doing when I wrote this assertion, but I'm pretty sure it's wrong. I'm guessing the change here is what I actually meant to write.
-
Ian Hickson authored
Add more debugPaintSizeEnabled construction lines.
-
Ian Hickson authored
- padding is shown in blue with a darker blue around the child - spacing (empty size boxes or padding) is shown in gray - alignment from a RenderPositionedBox is shown with yellow arrows
-
Adam Barth authored
When I tightened up the layout constraints for the Drawer in the Scaffold, I ended up making the edge swipe detector cover the entire screen. This patch fixes that issue by putting the gesture detector for the edge swipe just around the container with the proper width. We now use a global key to maintain the state across hierarchy changes.
-
- 08 Jan, 2016 5 commits
-
-
Ian Hickson authored
Material baseline grid
-
Collin Jackson authored
Proof of concept for Firebase support in Flutter framework
-
Collin Jackson authored
-
-
Ian Hickson authored
GridPaper updates
-