1. 02 Aug, 2018 1 commit
  2. 27 Jul, 2018 1 commit
  3. 23 Jul, 2018 1 commit
  4. 20 Jul, 2018 1 commit
  5. 16 Jul, 2018 2 commits
  6. 10 Jul, 2018 1 commit
  7. 05 Jun, 2018 1 commit
  8. 10 May, 2018 1 commit
    • Greg Spencer's avatar
      Fix handling of null body2 text style for chip and slider (#17311) · a365c41c
      Greg Spencer authored
      Before this change, if you specified a non-null textTheme, but the theme you specified didn't have a body2 defined, then creating a ChipTheme would assert (which means creating a ThemeData would fail).
      
      This adds handling for this corner case to default to reasonable values in that case. The slider had the same problem, but for accentTextTheme, so I fixed that too.
      
      While I had the patient open, Hans and I noticed that TextTheme.merge wasn't doing the right thing in the case where some members were null either, so I fixed that, and added some examples, since merge/copyWith are common operations that are not always well understood.
      
      Fixes #17251
      a365c41c
  9. 01 May, 2018 1 commit
  10. 20 Mar, 2018 1 commit
  11. 01 Mar, 2018 1 commit
    • Greg Spencer's avatar
      Slider Visual Update (#14901) · 701eff4a
      Greg Spencer authored
      This implements an update to the look of the Slider widget.
      
      Specifically, it does the following:
      
      * Adds the ability to customize the colors of all components of the slider
      * Adds the ability to customize the shape of the slider thumb and value indicator
      * Adds the ability to show the value indicator on continuous sliders
      * Updates the default value indicator to be a "paddle" shape with new animations.
      * Changes the tick marks to be visible all the time on discrete sliders
      * Fixes a memory leak of an animation controller.
      * Removes "thumbOpenAtMin" flag, which is no longer needed, and can be emulated by the
      custom thumb shape support. It was not widely used.
      * Adds tests for all of the new features.
      701eff4a
  12. 21 Dec, 2017 1 commit
  13. 17 Nov, 2017 1 commit
    • Greg Spencer's avatar
      Fix spelling errors in all the dartdocs. (#13061) · 0259be90
      Greg Spencer authored
      I got tired of drive-by spelling fixes, so I figured I'd just take care of them all at once.
      
      This only corrects errors in the dartdocs, not regular comments, and I skipped any sample code in the dartdocs. It doesn't touch any identifiers in the dartdocs either. No code changes, just comments.
      0259be90
  14. 21 Oct, 2017 1 commit
    • Yegor's avatar
      Theme.of provides all TextStyle properties (#12552) · 67d16cd5
      Yegor authored
      * Theme provides all TextStyle properties
      
      * match field declaration order in the test
      
      * Theme.of returns text style with inherit == false
      
      * change TextStyle.inherit logic; docs
      
      * add TextStyle.debugLabel
      
      * address comments
      
      * add debug labels to Typography text styles
      67d16cd5
  15. 05 Oct, 2017 1 commit
  16. 28 Sep, 2017 1 commit
  17. 22 Sep, 2017 1 commit
  18. 01 Jun, 2017 1 commit
  19. 03 May, 2017 1 commit
  20. 19 Apr, 2017 1 commit
  21. 14 Mar, 2017 1 commit
  22. 23 Jan, 2017 1 commit
  23. 10 Jan, 2017 1 commit
  24. 19 Nov, 2016 1 commit
  25. 02 Nov, 2016 1 commit
  26. 23 Oct, 2016 1 commit
  27. 19 Sep, 2016 1 commit
  28. 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
  29. 08 Jun, 2016 1 commit
  30. 07 Jun, 2016 1 commit
    • Adam Barth's avatar
      Improve gallery visuals on iOS (#4437) · 35ea6a1c
      Adam Barth authored
      1. Use the primary color brightness to determine the color of the status bar.
          The status bar overlaps the toolbar, which has the primary color.
       2. Use Roboto for text.
      35ea6a1c
  31. 28 Apr, 2016 1 commit
  32. 27 Apr, 2016 1 commit
  33. 30 Mar, 2016 1 commit
    • Adam Barth's avatar
      These height values are incorrect · bf31cf1e
      Adam Barth authored
      They're actually leading values rather than line height values, which means
      they're operative between paragraphs not within a given paragraph.
      bf31cf1e
  34. 18 Jan, 2016 1 commit
    • Ian Hickson's avatar
      Reimplement the theme transition animation by actually animating the Theme. · 73c9ebab
      Ian Hickson authored
      As part of this:
       - A lot of classes got new lerp functions, including e.g. TextStyle.
       - Theme's constructor story got overhauled. You can now configure
         everything if you really want to, and we're better about defaults.
       - Material no longer automatically animates its background color.
         (It still does for its shadow.)
       - Tabs try to get the indicator color from the theme.
       - The fields in ThemeData got reordered for sanity.
       - Theme.== and Theme.hashCode got fixed.
       - Typography got a bit of a spring cleaning.
      
      Fixes #613.
      73c9ebab
  35. 09 Dec, 2015 1 commit
  36. 26 Oct, 2015 1 commit
    • Adam Barth's avatar
      Be explicit about whether text styles inherit · 7a811e5a
      Adam Barth authored
      Now TextStyle has a boolean "inherit" value, which controls whether null values
      should use should inherit from the current default text style or whether they
      should use their initial values.
      7a811e5a
  37. 16 Oct, 2015 1 commit
  38. 10 Oct, 2015 2 commits