1. 29 Apr, 2019 1 commit
  2. 11 Apr, 2019 1 commit
  3. 07 Mar, 2019 1 commit
  4. 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
  5. 21 Feb, 2019 1 commit
  6. 23 Jan, 2019 1 commit
  7. 19 Dec, 2018 1 commit
    • MH Johnson's avatar
      [Material] Theme-able TextStyles for AlertDialog (#25339) · 6e155728
      MH Johnson authored
      * Themable elevation on dialogs.
      
      * AlertDialogs Title/Content text styles
      
      * Themable elevation on dialogs.
      
      AlertDialogs Title/Content text styles
      
      * finish merging change
      
      * fixing tests
      
      * Docs fixes
      
      * Change const to final to fix analyzer errors
      
      * Fix analyzer errors
      
      * Remove dart:ui import
      
      * Hans Comments
      6e155728
  8. 13 Dec, 2018 1 commit
  9. 26 Oct, 2018 1 commit
  10. 25 Sep, 2018 3 commits
  11. 12 Sep, 2018 1 commit
  12. 02 Aug, 2018 1 commit
  13. 27 Jul, 2018 1 commit
  14. 23 Jul, 2018 1 commit
  15. 16 Jul, 2018 2 commits
  16. 20 Apr, 2018 1 commit
  17. 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
  18. 19 Mar, 2018 1 commit
  19. 14 Mar, 2018 1 commit
    • Jonah Williams's avatar
      Replace child parameter with builder on showDialog (#15303) · 231170a7
      Jonah Williams authored
      * replace child parameter with builder on showDialog
      
      * change builder parameter to WidgetBuilder
      
      * mark child as deprecated and expand documentation to cover this and how builder should be used
      
      * tidy comments and address some feedback
      
      * phrasing
      
      * move space to prev line and add //ignore comments for deprecated member use
      
      * address comments and fix it's its
      
      * update code samples
      
      * adds semicolon to code snippets
      231170a7
  20. 09 Mar, 2018 1 commit
  21. 02 Feb, 2018 1 commit
  22. 11 Jan, 2018 1 commit
  23. 14 Dec, 2017 1 commit
  24. 12 Dec, 2017 1 commit
  25. 08 Dec, 2017 1 commit
  26. 02 Oct, 2017 1 commit
    • Adam Barth's avatar
      Add Alignment, which will replace FractionalOffset (#12342) · 2b126bcd
      Adam Barth authored
      Unlike FractionalOffset, Alignment uses the center as the zero of the
      coordinate system, which makes the RTL math work out much cleaner.
      
      Also, make FractionalOffset into a subclass of Alignment so that clients
      can continue to use FractionalOffset.
      2b126bcd
  27. 06 Jul, 2017 1 commit
  28. 03 Jun, 2017 1 commit
  29. 27 Apr, 2017 1 commit
  30. 23 Apr, 2017 1 commit
  31. 21 Apr, 2017 1 commit
  32. 12 Apr, 2017 1 commit
    • Ian Hickson's avatar
      Move Point to Offset (#9277) · bf017b79
      Ian Hickson authored
      * Manually fix every use of Point.x and Point.y
      
      Some of these were moved to dx/dy, but not all.
      
      * Manually convert uses of the old gradient API
      
      * Remove old reference to Point.
      
      * Mechanical changes
      
      I applied the following at the root of the Flutter repository:
      
      git ls-files -z | xargs -0 sed -i 's/\bPoint[.]origin\b/Offset.zero/g'
      git ls-files -z | xargs -0 sed -i 's/\bPoint[.]lerp\b/Offset.lerp/g'
      git ls-files -z | xargs -0 sed -i 's/\bnew Point\b/new Offset/g'
      git ls-files -z | xargs -0 sed -i 's/\bconst Point\b/const Offset/g'
      git ls-files -z | xargs -0 sed -i 's/\bstatic Point /static Offset /g'
      git ls-files -z | xargs -0 sed -i 's/\bfinal Point /final Offset /g'
      git ls-files -z | xargs -0 sed -i 's/^\( *\)Point /\1Offset /g'
      git ls-files -z | xargs -0 sed -i 's/ui[.]Point\b/ui.Offset/g'
      git ls-files -z | xargs -0 sed -i 's/(Point\b/(Offset/g'
      git ls-files -z | xargs -0 sed -i 's/\([[{,]\) Point\b/\1 Offset/g'
      git ls-files -z | xargs -0 sed -i 's/@required Point\b/@required Offset/g'
      git ls-files -z | xargs -0 sed -i 's/<Point>/<Offset>/g'
      git ls-files -z | xargs -0 sed -i 's/[.]toOffset()//g'
      git ls-files -z | xargs -0 sed -i 's/[.]toPoint()//g'
      git ls-files -z | xargs -0 sed -i 's/\bshow Point, /show /g'
      git ls-files -z | xargs -0 sed -i 's/\bshow Point;/show Offset;/g'
      
      * Mechanical changes - dartdocs
      
      I applied the following at the root of the Flutter repository:
      
      git ls-files -z | xargs -0 sed -i 's/\ba \[Point\]/an [Offset]/g'
      git ls-files -z | xargs -0 sed -i 's/\[Point\]/[Offset]/g'
      
      * Further improvements and a test
      
      * Fix minor errors from rebasing...
      
      * Roll engine
      bf017b79
  33. 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
  34. 07 Apr, 2017 1 commit
  35. 20 Mar, 2017 1 commit
  36. 13 Mar, 2017 1 commit
  37. 04 Mar, 2017 1 commit