- 08 Sep, 2015 6 commits
-
-
Adam Barth authored
-
Adam Barth authored
These files really belong on other libraries.
-
Adam Barth authored
-
Adam Barth authored
Introduce package:sky/animation.dart
-
Adam Barth authored
Move the animation libraries into src/animation and change importers to use package:sky/animation.dart. Also, move scheduler.dart into the animation library so that the animation library can be self-contained.
-
Hixie authored
This makes the sync code stop if it would have to rearrange the RenderObjects. I'll make it handle the cross-RenderObject case, as well as the insertion-sync case, in subsequent patches.
-
- 07 Sep, 2015 1 commit
-
-
Adam Barth authored
The editing directory just defined two widgets. We might as well fold them into the main widgets library.
-
- 06 Sep, 2015 1 commit
-
-
Adam Barth authored
-
- 05 Sep, 2015 4 commits
-
-
Adam Barth authored
Document and bring sanity to BoxConstraints
-
Adam Barth authored
Turns out many of the functions on BoxConstraints weren't used or had callers that could easily be updated to other functions. I've added dartdoc to all the public functions as well as renamed some functions that had similar names but did different things.
-
Adam Barth authored
working on generating docs as part of the build
-
Devon Carew authored
revert PATH changes fix typo some dartdoc changes in files
-
- 04 Sep, 2015 24 commits
-
-
Adam Barth authored
Center and Align should expand by default
-
Adam Barth authored
This patch makes Center and Align expand by default, which is usually what you want. It also adds a ShrinkWrap option to let you shrink wrap in one or both directions if that's really what you want to do.
-
Hans Muller authored
-
Hans Muller authored
Add Dismissable unit tests Add coverage for the DismissDirection paramter.
-
Hans Muller authored
-
Adam Barth authored
These needed to be updated because we moved the widgets directory into the src directory to hide it from dartdoc.
-
Ian Hickson authored
Handle Widget instances being moved as-is to different parts of the tree.
-
Chinmay Garde authored
Setup mac target for Fitness app
-
Chinmay Garde authored
-
Viktor Lidholt authored
Improvements to demo game
-
Hixie authored
-
Adam Barth authored
They're just as crazy in this system as they are in the web.
-
Hans Muller authored
``` enum DismissDirection { vertical, horizontal, left, right, up, down } ``` To only enable dismissing to the right create the `Dismissable` with `direction: DismissDirection.right`. By default direction is `DismissDirection.horizontal` (left or right). Updated the card_collection "Swipe Away" demo with a drawer that can be used to select one of the three X axis dismiss directions. Currently the MixedViewport class doesn't support horizontal scrolling, so the demo doesn't support the X axis dismiss directions.
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-
Viktor Lidholt authored
Demo game improvements
-
Adam Barth authored
Events should bubble up the tree
-
Ian Fischer authored
Error out on start if nothing started.
-
Alex Fandrianto authored
(optional param default value + newlines)
-
Adam Barth authored
Previously we reversed the event path by mistake before dispatching events.
-
Alex Fandrianto authored
widget is actively ignoring or not by changing a boolean instead of the tree structure. ignoring defaults to true.
-
Ian Fischer authored
-
Adam Barth authored
defaultHitTestChildren should return whether it hit something
-
- 03 Sep, 2015 4 commits
-
-
Adam Barth authored
Some clients want to know whether they hit their children.
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-
Viktor Lidholt authored
-