- 08 Dec, 2015 4 commits
-
-
Jason Simmons authored
Add a LocaleQuery widget that can be used to fetch locale-specific data
-
Jason Simmons authored
Users of MaterialApp can provide an onLocaleChanged handler that will be called to asynchronously fetch locale-specific data. MaterialApp will then instantiate a LocaleQuery that supplies the locale data to its descendants.
-
Adam Barth authored
Material gallery crashes when you press the drop-down button
-
Adam Barth authored
Now use use the route's getPosition function to position the drop-down menu. Also, fix a number of other related bugs that blocked the dropdown button from working correctly. The dropdown menu still has the following issues: 1) In the exit animation, the background of the menu disappears too quickly because of incorrect paint bounds computations in the layer tree. 2) The drop down menu isn't positioned correctly after the device rotates. We'll need to address this issue in a separate patch. Fixes #630
-
- 07 Dec, 2015 30 commits
-
-
Ian Hickson authored
didChangeNext()
-
Hixie authored
Replace didPushNext() and didReplaceNext() with didChangeNext(), and call it in more cases, so that a route can easily track the next route. Use this to make TransitionRoute properly track its next route so that you can do next-route-driven animations that work even with removes, replaces, and other crazy manipulations of the navigator stack.
-
Ian Hickson authored
Fix pointer up/move/cancel listeners
-
Hixie authored
Fallout from the pointer refactor.
-
Ian Hickson authored
Navigator.popUntil
-
Ian Hickson authored
Make debugIsVisible work.
-
Hixie authored
This was already supported in the underlying classes but somehow not exposed by Navigator itself.
-
Ian Hickson authored
AlwaysDismissedPerformance
-
Ian Hickson authored
Debugging aids for overlays, performances
-
Hixie authored
Turns out it was always returning true (visible).
-
Hixie authored
The same as AlwaysCompletePerformance but the exact opposite.
-
Hixie authored
-
Eric Seidel authored
Don't do performance testing in checked mode
-
Adam Barth authored
The intial route shouldn't run its entrance animation
-
Adam Barth authored
-
Eric Seidel authored
This makes startup 1500ms instead of 1700ms. @chinmaygarde @hixie
-
Adam Barth authored
Instead, it should enter the world fully formed.
-
Adam Barth authored
Add some dartdoc to basic widgets
-
Ian Hickson authored
Got the check the wrong way in the last patch.
-
Hixie authored
TBR @abarth
-
Ian Hickson authored
Ignore hover events.
-
Adam Barth authored
These docs are largely duplicated from the cooresponding rendering classes. I'm not sure how we can avoid repeating ourselves.
-
Viktor Lidholt authored
Fixes issue with physics debug drawing in sprites
-
Hixie authored
-
Adam Barth authored
Expose markNeedsBuild on MimicOverlayEntry
-
Adam Barth authored
We expose this function on OverlayEntry to let you drive animations in the overlay. The same use case applies to MimicOverlayEntry.
-
Ian Hickson authored
Export the new pointer event classes.
-
Hixie authored
-
Adam Barth authored
Parent data fixes
-
Adam Barth authored
Add some missing functionality to ParentData subclasses. Fixes #474
-
- 05 Dec, 2015 6 commits
-
-
Adam Barth authored
-
Adam Barth authored
Update Flutter API docs continuously
-
Adam Barth authored
The patch teaches Travis how to update our API docs continuously as we land patches in master.
-
Adam Barth authored
Repeated background images should be clipped to the container
-
Adam Barth authored
Fixes #766
-
Adam Barth authored
Add a completer to MaterialPageRoute
-