- 08 Oct, 2015 17 commits
-
-
Hans Muller authored
Defunct DismissableState should not have live animations
-
Hans Muller authored
-
Hixie authored
-
Chinmay Garde authored
-
Hans Muller authored
-
Adam Barth authored
Remove ButtonState
-
Adam Barth authored
SnackBar throws exception on creation
-
Adam Barth authored
Clients should just use a GestureDetector (or an InkWell) instead.
-
Hans Muller authored
Added horizontal and vertical alignment properties to Stack so that the origin of non-positioned children can be specified. Currently all of the non-positioned children just end up with their top-left at 0,0. Now, for example, you can center the children by specifying verticalAlignment: 0.5, horizontalAlignment: 0.5. Added IndexedStack which only paints the stack child specified by the index property. Since it's a Stack, it's as big as the biggest non-positioned child. This component will be essential for building mobile drop down menus. Added a (likely temporary) example that demonstrates IndexedStack.
-
Adam Barth authored
It was trying to grab the route's performance before it was created. Now we create the performance eagerly again.
-
Adam Barth authored
The Drawer should animate out when popped off the navigator
-
Adam Barth authored
FlatButton highlights but doesn't tap around edge
-
Viktor Lidholt authored
Adds support for applying forces and impulses to sprite physics
-
Hans Muller authored
-
Adam Barth authored
Now we trigger the highlight from the InkWell so that it matches the tap. Fixes #1525
-
Adam Barth authored
-
Adam Barth authored
Now with more clear ownership over the Performance.
-
- 07 Oct, 2015 7 commits
-
-
Hixie authored
Previously, RenderObjectElements didn't support being marked dirty. This is fine, except for MixedViewport and HomogeneousViewport, which have builder functions to which they hand themselves as a BuildContext. If those builder functions call, e.g., Theme.of(), then when the theme changes, the Inherited logic tries to tell the RenderObjectElement object that its dependencies changed and that doesn't go down well. This patch fixes this by making RenderObjectElement a BuildableElement, and making MixedViewport and HomogeneousViewport hook into that to rebuild themselves appropriately. Also, this was only found at all because ThemeData didn't implement operator==, so we were aggressively marking the entire tree dirty all the time. That's fixed here too. Also, I changed card_collection.dart to have more features to make this easier to test. This found bugs #1524, #1522, #1528, #1529, #1530, #1531.
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-
Adam Barth authored
Separate Route and PerformanceRoute
-
Chinmay Garde authored
-
Chinmay Garde authored
-
Adam Barth authored
This patch prepares us to create routes that control their performances more closely.
-
- 06 Oct, 2015 16 commits
-
-
Mehmet Akin authored
Make checkbox widget to fit more closely to material design standard. Make changes to remove animation artefacts.
-
Hans Muller authored
Remove PopupMenu margin The margins make using showMenu's menuPosition argument difficult and they're not really needed. I also made a few small gratuitous changes in navigator.dart.
-
Hans Muller authored
The margins make using showMenu's menuPosition argument difficult and they're not really needed. I also made a few small gratuitous changes in navigator.dart.
-
Adam Barth authored
NetworkImage occasionally does not grab the image
-
Viktor Lidholt authored
Improvements to sprite physics
-
Viktor Lidholt authored
-
Adam Barth authored
I haven't been able to reproduce this bug consistently, but my theory is that the ImageDecoder was being garbage collected before it called its completion callback. This patch prevents that by keeping a reference to the image decoder while the callback is in flight. Fixes #801
-
Adam Barth authored
Simplify Scaffold
-
Adam Barth authored
ToolBar with a TabBar shouldn't have a shadow
-
Adam Barth authored
Rather than using a custom render object, we can just use a Stack.
-
Viktor Lidholt authored
-
Viktor Lidholt authored
Fixes to demo game
-
Adam Barth authored
PageableList should take initialPage instead of initialScrollOffset
-
Adam Barth authored
-
Adam Barth authored
This state object has a public API.
-
Viktor Lidholt authored
-