1. 02 Aug, 2018 1 commit
  2. 27 Jul, 2018 1 commit
  3. 23 Jul, 2018 1 commit
  4. 16 Jul, 2018 2 commits
  5. 03 May, 2018 1 commit
  6. 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
  7. 06 Feb, 2018 1 commit
    • Chris Bracken's avatar
      Apply media padding in Gallery Shrine demo (#14506) · 6494dde3
      Chris Bracken authored
      Applies horizontal and bottom safe area insets to the Shrine demo in the
      Gallery. Top insets are not applied due to the presence of the
      omnipresent sliver app bar. Specifically, this ensures that the grid
      cards are inset inside the iPhone X notch in horizontal mode, and that
      the bottom of the grid is positioned above the iOS home indicator.
      6494dde3
  8. 01 Feb, 2018 1 commit
  9. 25 Jan, 2018 1 commit
  10. 02 Oct, 2017 1 commit
  11. 26 Sep, 2017 1 commit
  12. 08 Jun, 2017 1 commit
  13. 07 Jun, 2017 1 commit
  14. 03 May, 2017 1 commit
  15. 25 Apr, 2017 1 commit
  16. 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
  17. 07 Apr, 2017 1 commit
  18. 31 Mar, 2017 1 commit
  19. 27 Mar, 2017 1 commit
  20. 17 Mar, 2017 1 commit
  21. 14 Mar, 2017 1 commit
  22. 04 Mar, 2017 1 commit
  23. 02 Mar, 2017 2 commits
  24. 21 Feb, 2017 1 commit
  25. 04 Feb, 2017 1 commit
    • Adam Barth's avatar
      CustomScrollView (#7881) · ff14f35d
      Adam Barth authored
      Also, use CustomScrollView in Shrine and fix a bug with one-line grids
      not painting properly due to their reporiting zero paintExtent.
      ff14f35d
  26. 30 Nov, 2016 1 commit
  27. 22 Nov, 2016 1 commit
    • Adam Barth's avatar
      Rename Flexible to Expanded and improve docs (#6978) · 8ca4caa4
      Adam Barth authored
      This patch replaces uses of Flexible with Expanded where we're using
      FlexFit.tight. We still need to think of a better name for the
      FlexFit.loose variant.
      
      Also, improve the docs for Row, Column, Flex, and RenderFlex to be more
      problem-oriented and to give a complete account of the layout algorithn.
      
      Fixes #6960
      Fixes #5169
      8ca4caa4
  28. 14 Oct, 2016 1 commit
  29. 16 Sep, 2016 1 commit
  30. 19 Aug, 2016 1 commit
  31. 16 Aug, 2016 1 commit
  32. 15 Aug, 2016 1 commit
  33. 05 Aug, 2016 1 commit
  34. 29 Jul, 2016 2 commits
  35. 11 Jul, 2016 1 commit
  36. 21 Jun, 2016 1 commit
    • Ian Hickson's avatar
      ImageIcon (#4649) · e502e9c8
      Ian Hickson authored
      Anywhere that accepted IconData now accepts either an Icon or an
      ImageIcon.
      
      Places that used to take an IconData in an `icon` argument, notably
      IconButton and DrawerItem, now take a Widget in that slot. You can wrap
      the value that used to be passed in in an Icon constructor to get the
      same result.
      
      Icon itself now takes the icon as a positional argument, for brevity.
      
      ThemeData now has an iconTheme as well as a primaryIconTheme, the same
      way it has had a textTheme and primaryTextTheme for a while.
      
      IconTheme.of() always returns a value now (though that value itself may
      have nulls in it). It defaults to the ThemeData.iconTheme.
      
      IconThemeData.fallback() is a new method that returns an icon theme data
      structure with all fields filled in.
      
      IconTheme.merge() is a new constructor that takes a context and creates
      a widget that mixes in the new values with the inherited values.
      
      Most places that introduced an IconTheme widget now use IconTheme.merge.
      
      IconThemeData.merge and IconThemeData.copyWith act in a way analogous to
      the similarly-named members of TextStyle.
      
      ImageIcon is introduced. It acts like Icon but takes an ImageProvider
      instead of an IconData.
      
      Also: Fix the analyzer to actually check the stocks app.
      e502e9c8
  37. 20 Jun, 2016 1 commit