1. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  2. 28 Feb, 2019 1 commit
    • Greg Spencer's avatar
      Fix spelling errors. (#28657) · ccdd5057
      Greg Spencer authored
      Fix the spelling errors in the dartdocs for the framework.
      
      There are no functionality changes here, just documentation fixes.
      ccdd5057
  3. 04 Jan, 2019 1 commit
  4. 18 Dec, 2018 1 commit
  5. 27 Sep, 2018 1 commit
  6. 13 Sep, 2018 1 commit
  7. 12 Sep, 2018 1 commit
  8. 29 Aug, 2018 1 commit
  9. 02 Aug, 2018 1 commit
  10. 27 Jul, 2018 1 commit
  11. 23 Jul, 2018 1 commit
  12. 16 Jul, 2018 2 commits
  13. 12 Jun, 2018 1 commit
  14. 30 May, 2018 1 commit
  15. 03 May, 2018 1 commit
  16. 22 Mar, 2018 1 commit
    • Ian Hickson's avatar
      Clean up the existing Navigator API. (#15718) · aba0379d
      Ian Hickson authored
      This is not a grand refactor yet, it's just cleaning up what we have
      already, so that people who keep using this API (e.g. dialogs) have
      something coherent to deal with.
      
      The major changes are that Navigator and NavigatorState have the same
      API now, that most of the examples use `<void>` instead of `<Null>`,
      that the navigator observer can see replaces, and that the `settings`
      is moved from ModalRoute to Route. I also cleaned up some of the API
      documentation.
      aba0379d
  17. 14 Dec, 2017 1 commit
  18. 12 Dec, 2017 1 commit
  19. 04 Dec, 2017 1 commit
  20. 25 Nov, 2017 1 commit
  21. 22 Nov, 2017 1 commit
    • Ian Hickson's avatar
      Popup menus RTL (#13110) · 34ba6be9
      Ian Hickson authored
      This fixes the popup menu code to do a better job of expanding
      smoothly regardless of which side of the screen it's on. It still
      results in a bidirection growth when positioned at the bottom of the
      screen, so maybe we'll need to animate menus differently, but that's
      a problem for another patch.
      
      Also, improve some docs and provide RelativeRect.toSize which I needed
      at one point while building this patch (though it didn't survive all
      the way to the end).
      34ba6be9
  22. 17 Aug, 2017 1 commit
  23. 06 May, 2017 1 commit
  24. 05 May, 2017 1 commit
  25. 23 Apr, 2017 1 commit
  26. 21 Apr, 2017 1 commit
  27. 11 Apr, 2017 1 commit
    • xster's avatar
      Rename State.config to widget everywhere (#9273) · 89a7fdfc
      xster authored
      Rename State.config to State.widget
      Rename State.didUpdateConfig to State.didUpdateWidget
      Renamed all State subclasses' local variables named config to something else
      89a7fdfc
  28. 05 Apr, 2017 1 commit
  29. 31 Mar, 2017 1 commit
  30. 20 Mar, 2017 1 commit
  31. 04 Mar, 2017 1 commit
  32. 22 Jan, 2017 1 commit
  33. 23 Oct, 2016 1 commit
  34. 14 Oct, 2016 1 commit
  35. 29 Sep, 2016 1 commit
  36. 26 Sep, 2016 1 commit
    • Ian Hickson's avatar
      Turn off AnimationControllers when not in use (#5902) · 9e673853
      Ian Hickson authored
      This requires all AnimationController objects to be given a
      TickerProvider, a class that can create the Ticker.
      
      It also provides some nice mixins for people who want to have their
      State provide a TickerProvider. And a schedulerTickerProvider for those
      cases where you just want to see your battery burn.
      
      Also, we now enforce destruction order for elements.
      9e673853
  37. 23 Aug, 2016 1 commit
  38. 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
  39. 03 Jun, 2016 1 commit
    • Adam Barth's avatar
      Convert drag gestures to use details objects (#4343) · 2d4acb80
      Adam Barth authored
      Previously we supplied individual parameters to the various drag and pan
      callbacks. However, that approach isn't extensible because each new
      parameter is a breaking change to the API.
      
      This patch makes a one-time breaking change to the API to provide a
      "details" object that we can extend over time as we need to expose more
      information. The first planned extension is adding enough information to
      accurately produce an overscroll glow on Android.
      2d4acb80