1. 12 Jun, 2017 1 commit
    • Ian Hickson's avatar
      More documentation (#10606) · a9f1cb8c
      Ian Hickson authored
      - How do you handle a tap on text?
      - Why is AnimatedOpacity expensive?
      - Why would you use a gesture arena team?
      ...and other minor fixes
      a9f1cb8c
  2. 08 Jun, 2017 1 commit
  3. 07 Jun, 2017 1 commit
  4. 19 May, 2017 1 commit
  5. 12 May, 2017 1 commit
  6. 09 May, 2017 1 commit
  7. 08 May, 2017 2 commits
  8. 05 May, 2017 2 commits
  9. 02 May, 2017 1 commit
  10. 23 Apr, 2017 1 commit
  11. 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
  12. 07 Apr, 2017 1 commit
  13. 06 Apr, 2017 1 commit
  14. 31 Mar, 2017 1 commit
  15. 24 Mar, 2017 1 commit
  16. 17 Mar, 2017 1 commit
  17. 21 Feb, 2017 1 commit
  18. 04 Feb, 2017 1 commit
  19. 26 Jan, 2017 1 commit
  20. 30 Nov, 2016 1 commit
  21. 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
  22. 19 Nov, 2016 1 commit
  23. 09 Nov, 2016 1 commit
  24. 19 Oct, 2016 1 commit
  25. 31 Aug, 2016 1 commit
  26. 25 Aug, 2016 1 commit
  27. 24 Aug, 2016 1 commit
  28. 22 Aug, 2016 1 commit
  29. 15 Aug, 2016 2 commits
    • Ian Hickson's avatar
      Fix the logo widget (#5414) · 0d736332
      Ian Hickson authored
      Some tweaks to the logo widget:
      
      * remove bad assert
      * allow text color to be configured
      * make logo pretty in dark mode in gallery
      * fix some docs
      0d736332
    • Ian Hickson's avatar
      A Flutter logo widget. (#5382) · 955b3e21
      Ian Hickson authored
      Instead of a PNG, the Flutter gallery widget is now drawn in code.
      
      There's now a FlutterLogoDecoration class that paints the flutter logo
      anywhere you can use a Decoration (e.g. AnimatedContainer).
      
      There's now a FlutterLogo class that honors the IconTheme.
      
      The About dialog box API now takes a Widget for the applicationIcon,
      instead of an ImageProvider. It uses IconTheme to make the icon the
      right size instead of using an Image widget.
      
      Add padding, duration, and curve properties to the DrawerHeader.
      Make the child of a DrawerHeader optional.
      
      Clean up UserAccuntsDrawerHeader a bit.
      
      Add some useful properties and methods to EdgeInsets.
      
      Add some debug logic to RenderDecoratedBox to catch unpaired
      save/restore calls when possible.
      
      Make GestureDetector fill its parent if it has no children. Fixes
      https://github.com/flutter/flutter/issues/5380
      955b3e21
  30. 12 Aug, 2016 1 commit
  31. 04 Aug, 2016 1 commit
  32. 20 Jul, 2016 1 commit
  33. 25 Jun, 2016 1 commit
  34. 22 Jun, 2016 1 commit
    • Ian Hickson's avatar
      About box API (#4677) · cd89e867
      Ian Hickson authored
      This API is the front-end part of the work on showing licenses.
      
      Future patches will:
      
      * Provide an API for registering what licenses should be shown here,
        which will be used by this feature to shown licenses but could also be
        used by custom code for showing licenses (e.g. for people not using
        the Material widgets).
      
      * Actually populate this license API from all the licenses we currently
        use in the engine, in the framework, and from any pub packages that
        are used (directly or indirectly) by the application.
      cd89e867
  35. 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
  36. 24 May, 2016 1 commit
  37. 09 May, 2016 1 commit