1. 14 Mar, 2016 1 commit
  2. 12 Mar, 2016 4 commits
  3. 06 Mar, 2016 1 commit
  4. 05 Mar, 2016 1 commit
  5. 27 Feb, 2016 1 commit
  6. 11 Feb, 2016 1 commit
    • Ian Hickson's avatar
      Clean up imports and exports. · a94999ba
      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.
      a94999ba
  7. 05 Feb, 2016 1 commit
  8. 20 Jan, 2016 1 commit
  9. 07 Jan, 2016 1 commit
  10. 09 Dec, 2015 2 commits
  11. 07 Dec, 2015 1 commit
  12. 02 Dec, 2015 1 commit
    • Adam Barth's avatar
      Add liftToOverlay to Mimicable · f538d3b7
      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.
      f538d3b7
  13. 20 Oct, 2015 1 commit
  14. 10 Oct, 2015 1 commit
  15. 09 Oct, 2015 1 commit
  16. 06 Oct, 2015 2 commits
  17. 01 Oct, 2015 1 commit
  18. 16 Sep, 2015 1 commit
    • Hixie's avatar
      Factor out GlobalKeyWatcher · d8668606
      Hixie authored
      This also moves the logic that tracks what Widget is being watched into
      GlobalKeyWatcher, and much simplifies Mimic based on this.
      d8668606
  19. 02 Sep, 2015 1 commit
    • Adam Barth's avatar
      Move widgets and rendering inside src · 693ddcd8
      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.
      693ddcd8
  20. 28 Aug, 2015 1 commit
  21. 26 Aug, 2015 1 commit
  22. 25 Aug, 2015 1 commit
  23. 24 Aug, 2015 1 commit
  24. 22 Aug, 2015 1 commit
  25. 07 Aug, 2015 2 commits
    • Adam Barth's avatar
      Use localToGlobal and globalToLocal in MimicOverlay · 68565eb3
      Adam Barth authored
      Also, make RenderStack support negative positions with clipping so that we can
      expand objects that are partially offscreen.
      68565eb3
    • Adam Barth's avatar
      Add a MimicOverlay widget · 5aafa65f
      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.
      5aafa65f
  26. 06 Aug, 2015 1 commit
    • Adam Barth's avatar
      Add widgets for reparenting widgets · 9bed37b5
      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.
      9bed37b5