- 21 Oct, 2015 16 commits
-
-
Hixie authored
-
Adam Barth authored
Export gridpaper.dart
-
Matt Perry authored
Create new 'flx' package. Just a copy for now.
-
Matt Perry authored
-
Matt Perry authored
This will be shared by sky/updater and flutter_tools. Currently bundle.dart and signing.dart are unmodified copies of the files from updater and flutter_tools, respectively. This is so future changes are easier to see.
-
Hixie authored
-
Hixie authored
This grid makes it significantly easier to track down errors when you're looking at coordinates in a render tree dump and want to see if they're what you expect or if they're wildly away from the right location.
-
Hixie authored
-
Hixie authored
These new PerformanceView classes are transforms over PerformanceViews. The first is a cheap way to tell code that expects a performance to not animate after all, and the other is a way to replace a view of a performance going in one direction with a view of a performance going in the other direction. See also https://github.com/flutter/engine/issues/1708
-
Hixie authored
A transition that rotates its contents.
-
Hixie authored
Assert at build time that PageRoute route builders do not return null widget trees. Also very minor new code comments and code reorg to help make the heroes patch easier to review. (These are changes that are unrelated to Heroes but that were part of the Heroes patch.)
-
Adam Barth authored
-
Ian Hickson authored
UniqueKey
-
Adam Barth authored
-
Hixie authored
Sometimes you need a Key (not a GlobalKey) that is only equal to itself but can be used multiple times in the tree. Enter UniqueKey!
-
Adam Barth authored
The 0.2.1 release of the mojo package isn't actually compatible with Flutter despite claiming to be a minor release. The real fix is to make Flutter compatible with that release, but there are several yak shaves involved.
-
- 20 Oct, 2015 17 commits
-
-
Viktor Lidholt authored
First pass on sprite physics node hierarchy integration
-
Adam Barth authored
-
Adam Barth authored
Fixes #1702
-
Adam Barth authored
Adds EnterExitTransition widget
-
Adam Barth authored
This widget smoothly resizes as its child changes and lets you provide entrance and exit transitions for its children.
-
Viktor Lidholt authored
-
Jim Beveridge authored
Close the UrlLoaderProxy on error.
-
Viktor Lidholt authored
-
Ian Hickson authored
RenderOffStage test
-
Hixie authored
Also, give RenderViewport a default offset.
-
Jim Beveridge authored
Fixes #1680.
-
Hixie authored
I accidentally lost this when extracting RenderOverflowBox from RenderProxyBox.
-
Hixie authored
Introduces a new Widget that lays its child out, but does not render it. Also, moves RenderOverflowBox to its own file since it has nothing to do with proxy box really.
-
Adam Barth authored
We call this function _getInnerConstraints in other classes. Also, this change makes it private for RenderOverflowBox.
-
Adam Barth authored
-
Adam Barth authored
The style we use for callbacks in widgets is "onFoo". These classes were using an order naming convention and just called their callbacks "callback".
-
Adam Barth authored
-
- 19 Oct, 2015 7 commits
-
-
Hixie authored
-
Hixie authored
Provide a way to schedule a callback for immediately after the current frame has been sent to the GPU thread. This is useful for times where you want to immediately schedule yourself for another build or layout because, for instance, you just displayed frame zero of an animation and you want to use the metrics from that layout to set up the actual animation to begin immediately, such that the very next frame is frame 1.
-
Adam Barth authored
Fix analyzer warnings in examples
-
Matt Perry authored
Add support for verifying .flx signatures when updating
-
Adam Barth authored
-
Matt Perry authored
Adds a step to the updater to verify that the new .flx package is signed and untampered. Each .flx contains a signed manifest file. The manifest contains a SHA-256 hash of the .flx contents. See bundle.dart for a description of the new .flx format.
-
Adam Barth authored
Show ColorFilter
-