1. 09 Sep, 2016 1 commit
  2. 29 Aug, 2016 1 commit
  3. 27 Aug, 2016 1 commit
  4. 25 Aug, 2016 1 commit
  5. 01 Aug, 2016 1 commit
  6. 27 Jul, 2016 1 commit
    • Adam Barth's avatar
      Don't rebuild routes on the second animation frame (#5097) · 8219ab61
      Adam Barth authored
      Previously we would rebuild every route on the second animation frame to
      rejigger the offstage bit and the animations. Now we build the page once and
      update the offstage bit in place and update the animations using
      ProxyAnimations.
      8219ab61
  7. 22 Jul, 2016 1 commit
    • Adam Barth's avatar
      Improve compositing strategy for Shrine (#5014) · 39e75921
      Adam Barth authored
      This patch includes a number of improvements:
      
       * Material page routes now put a repaint boundary inside their transition so
         they don't repaint during the transition.
       * Heroes that are on a quest now get a repaint boundary so we repaint them
         individually.
       * I've hoisted the transparent material for the product items up in the widget
         tree, which doesn't affect performance but makes the ink splashes reach the
         edge of the product cards.
       * I've changed the repaint rainbow visualization to make it easier to see
         what's going on.
      39e75921
  8. 07 Jul, 2016 1 commit
  9. 21 Jun, 2016 2 commits
    • Adam Barth's avatar
      Route.didMount should throw a useful error message (#4665) · 97c1f0b7
      Adam Barth authored
      The error code path wasn't actually getting the point where it would throw the
      useful error message. Also, fix error recovery when runApp fails.
      
      Fixes #4655
      97c1f0b7
    • Adam Barth's avatar
      Nesting MaterialApps should not assert (#4636) · e071f0ba
      Adam Barth authored
      Turns out we weren't managing focus correct between navigator routes because we
      were missing a Focus widget above the routes. However, adding this widget
      caused us to explode at startup because the initial route was trying to move
      focus during the build phase.
      
      This patch teaches Focus to have an initiallyFocusedScope, which can be use to
      initialize the child focus scope.
      
      Fixes #4065
      e071f0ba
  10. 07 Jun, 2016 1 commit
    • Ian Hickson's avatar
      Provide UI to paginate PaginatedDataTable (#4382) · 68f92d4f
      Ian Hickson authored
      Also:
      * Make PaginatedDataTable able to scroll itself horizontally.
      * Make drop down buttons support having an explicit text style and icon
        size given.
      * Fix a bug with drop-down buttons asserting when opened partly
        off-screen.
      * Make sure to pop the drop-down button's route if the drop-down button
        is discarded while the route is up.
      * Remove extraneous padding on drop-down buttons. (Couldn't figure out
        why it was there, and it breaks alignment when a drop-down is mixed
        with other text.)
      * Some docs improvements.
      * Add Route.isActive
      * Add a setState() method to ModalRoutes.
      68f92d4f
  11. 06 Jun, 2016 1 commit
  12. 02 Jun, 2016 1 commit
  13. 12 May, 2016 1 commit
  14. 06 May, 2016 1 commit
  15. 03 May, 2016 1 commit
  16. 08 Apr, 2016 1 commit
  17. 14 Mar, 2016 1 commit
  18. 12 Mar, 2016 4 commits
  19. 08 Mar, 2016 1 commit
  20. 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
  21. 27 Jan, 2016 1 commit
  22. 21 Jan, 2016 1 commit
    • Adam Barth's avatar
      Use parent consistently for parent animation · d59da41b
      Adam Barth authored
      Some of the Animation classes that we converted from performances use
      the term "master" to refer to the animation upon which they're based.
      This patch changes them to use the term "parent", which is consistent
      with the rest of the animation classes.
      d59da41b
  23. 20 Jan, 2016 3 commits
    • Adam Barth's avatar
      Remove Performance and AnimatedValue · b988a875
      Adam Barth authored
      This patch removes Performance and AnimationValue now that we've ported the
      framework over to AnimationController and Tween. This patch also cleans up the
      names of the AnimationController classes now that they don't have to avoid
      conflicts with the old animation API. Specifically, I've made the following
      renames:
      
       * Animated -> Animation
       * Evaluatable -> Animatable
       * PerformanceStatus -> AnimationStatus
      
      This patch is just renames and moving code around. There aren't any changes in
      behavior.
      b988a875
    • Adam Barth's avatar
      Port most of widgets to AnimationController · 24872f69
      Adam Barth authored
      I've left transitions and enter_exit_transition out of this patch, but I've
      converted the rest.
      24872f69
    • Adam Barth's avatar
      Switch Navigator over to using AnimationController · 6cea5dc8
      Adam Barth authored
      This patch moves Navigator and related code over to using
      AnimationController.
      6cea5dc8
  24. 07 Jan, 2016 1 commit
  25. 11 Dec, 2015 1 commit
    • Adam Barth's avatar
      Add dartdoc for image classes · 40dda1ed
      Adam Barth authored
       - Adds dartdoc for all the `of` functions.
       - Renames Image to RawImage. This widget is rarely used and shouldn't take up
         such a nice global name.
      
      Fixes #361
      40dda1ed
  26. 09 Dec, 2015 2 commits
  27. 08 Dec, 2015 4 commits
  28. 07 Dec, 2015 1 commit
    • Hixie's avatar
      didChangeNext() · 18d5c5e7
      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.
      18d5c5e7
  29. 05 Dec, 2015 1 commit
  30. 04 Dec, 2015 1 commit