- 14 Mar, 2016 1 commit
-
-
Hixie authored
-
- 12 Mar, 2016 4 commits
-
-
Adam Barth authored
This patch renames StatelessComponent to StatelessWidget and StatefulComponent to StatefulWidget. Fixes #2308
-
Hixie authored
And fix the zillion issues that uncovered.
-
Ian Hickson authored
This reverts commit f41b3411, reversing changes made to e33d8d96. This was a bad check-in due to my mangling uploading a new version of the branch from a different machine. This reverts https://github.com/flutter/flutter/pull/2639 and will be replaced by https://github.com/flutter/flutter/pull/2640
-
Hixie authored
And fix the zillion issues that uncovered.
-
- 06 Mar, 2016 1 commit
-
-
Ian Hickson authored
-
- 05 Mar, 2016 1 commit
-
-
Ian Hickson authored
Fixes https://github.com/flutter/flutter/issues/2436
-
- 27 Feb, 2016 1 commit
-
-
Hixie authored
-
- 11 Feb, 2016 1 commit
-
-
Ian Hickson authored
Each layer is supposed to reexport the parts of the previous layer that are part of its API. - In painting.dart, export from dart:ui all the Canvas-related APIs that make sense to be used at higher levels, e.g. PaintingStyle. - Delete painting/shadows.dart. It was dead code. - In rendering/object.dart, export all of painting.dart. - In widgets/basic.dart, export all of painting.dart and animation.dart. Some classes in animation/ are renamed to make this less disruptive and confusing to the namespace. - Split out Stocks back into an import model rather than a part model, so that it's easier to manage its dependencies on a per-file basis. - Move Ticker to scheduler library. - Remove as many redundant imports as possible now. - Some minor nit picking cleanup in various files.
-
- 05 Feb, 2016 1 commit
-
-
Adam Barth authored
Making progress documenting the widget library.
-
- 20 Jan, 2016 1 commit
-
-
Adam Barth authored
I've left transitions and enter_exit_transition out of this patch, but I've converted the rest.
-
- 07 Jan, 2016 1 commit
-
-
Ian Hickson authored
Make ancestorStateOfType() and ancestorRenderObjectOfType() support subclassing. Fixes https://github.com/flutter/flutter/issues/1087
-
- 09 Dec, 2015 2 commits
-
-
Adam Barth authored
-
Adam Barth authored
-
- 07 Dec, 2015 1 commit
-
-
Adam Barth authored
We expose this function on OverlayEntry to let you drive animations in the overlay. The same use case applies to MimicOverlayEntry.
-
- 02 Dec, 2015 1 commit
-
-
Adam Barth authored
This patch integrates Mimicable with Overlay such that you can tell a Mimicable to lift up into the overlay and animate towards another widget identified by a global key.
-
- 20 Oct, 2015 1 commit
-
-
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".
-
- 10 Oct, 2015 1 commit
-
-
Adam Barth authored
-
- 09 Oct, 2015 1 commit
-
-
Adam Barth authored
These are now part of material.dart.
-
- 06 Oct, 2015 2 commits
-
-
Adam Barth authored
This state object has a public API.
-
Adam Barth authored
In the vast majority of cases, folks should be interacting with the Widget rather than its State. Fixes #267
-
- 01 Oct, 2015 1 commit
-
-
Adam Barth authored
-
- 16 Sep, 2015 1 commit
-
-
Hixie authored
This also moves the logic that tracks what Widget is being watched into GlobalKeyWatcher, and much simplifies Mimic based on this.
-
- 02 Sep, 2015 1 commit
-
-
Adam Barth authored
Code outside of package:sky should import this code using package:sky/rendering.dart package:sky/widgets.dart Moving this code into the "src" directory is a convention that signifies that and it cleans up the generated dartdoc because the libraries in the src directory aren't included in the generated documentation. Instead, the classes are documented in the widgets.dart and rendering.dart libraries.
-
- 28 Aug, 2015 1 commit
-
-
Hixie authored
Stop exporting framework.dart from basic.dart, since we now have widgets.dart exporting all of framework.dart.
-
- 26 Aug, 2015 1 commit
-
-
Andrew Wilson authored
-
- 25 Aug, 2015 1 commit
-
-
Adam Barth authored
We weren't telling the new mimicable that we wanted to start mimicing it.
-
- 24 Aug, 2015 1 commit
-
-
Adam Barth authored
We now have Mimic tracking Mimicable through tree structure changes and while moving around the screen. Fixes #751 and #756
-
- 22 Aug, 2015 1 commit
-
-
Adam Barth authored
-
- 07 Aug, 2015 2 commits
-
-
Adam Barth authored
Also, make RenderStack support negative positions with clipping so that we can expand objects that are partially offscreen.
-
Adam Barth authored
This widget lets you mimic one of its children in an overlay. The overlay starts out as the same size of the child and then grows to fill the overlay. In the future, the mimic will start at the same visual position as the child.
-
- 06 Aug, 2015 1 commit
-
-
Adam Barth authored
Wrap widgets you want to reparent in a Mimicable widget and assign the Mimicable widget a global key. Then, given the same global key to a Mimic widget to make it appear elsewhere in the view hierarchy.
-