1. 11 Jun, 2020 1 commit
  2. 05 Dec, 2019 1 commit
    • Greg Spencer's avatar
      Normalizes all of the "See also" blocks in comments. (#46121) · c6fe7bb9
      Greg Spencer authored
      This normalizes all of the "See also" blocks in comments so that they conform in style.
      
      They all look like this now:
      
        /// See also:
        ///
        ///  * [MyFavoriteWidget], because it's cool.
        class Foo {}
      
      I removed some useless "See also" blocks, and added commentary to ones that were just "bare" references.
      
      This is my penance for adding so many bullets that are "-" instead of "*". :-)
      c6fe7bb9
  3. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  4. 24 Sep, 2019 1 commit
  5. 13 Jun, 2019 1 commit
  6. 29 Apr, 2019 1 commit
  7. 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
  8. 12 Sep, 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. 25 Jun, 2018 1 commit
  14. 05 Jun, 2018 1 commit
  15. 15 May, 2018 1 commit
    • Todd Volkert's avatar
      Updates to debugDisableShadows (#17577) · c4cb0ecf
      Todd Volkert authored
      1. Make CupertinoSwitch use BoxShadow.toPaint() so that it respects
         the `debugDisableShadows` flag.
      2. Increase blue radius on debug banner
      3. Only stroke "synthetic shadow" borders if elevation is positive.
      c4cb0ecf
  16. 10 May, 2018 1 commit
  17. 20 Mar, 2018 1 commit
  18. 14 Mar, 2018 1 commit
  19. 12 Mar, 2018 1 commit
  20. 08 Mar, 2018 1 commit
  21. 17 Jan, 2018 1 commit
  22. 21 Dec, 2017 1 commit
  23. 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
  24. 24 Sep, 2017 1 commit
  25. 21 Sep, 2017 1 commit
  26. 08 Sep, 2017 2 commits
    • Ian Hickson's avatar
      Fix WidgetsApp to wrap its contents in a Directionality (#12018) · fad36baa
      Ian Hickson authored
      ...rather than only wrapping the children.
      
      Also, improvements to Banner to better support RTL, and mock_canvas to
      make debugging things easier.
      fad36baa
    • Adam Barth's avatar
      Rename BannerLocation enum values (#11960) · 1792766a
      Adam Barth authored
      * Rename BannerLocation enum values
      
       * topLeft -> topStart
       * topRight -> topEnd
       * bottomLeft -> bottomStart
       * bottomRight -> bottomEnd
      
      These names will make it easier for us to adjust the location of the
      banner in right-to-left mode.
      
      See the discussion on flutter-dev.
      
      * Add RTL support for Banner
      
      Fixes #11905
      1792766a
  27. 07 Sep, 2017 1 commit
  28. 03 Aug, 2017 1 commit
  29. 25 Jul, 2017 1 commit
  30. 02 Jun, 2017 1 commit
  31. 10 May, 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. 06 Apr, 2017 1 commit
  34. 15 Mar, 2017 1 commit
  35. 02 Feb, 2017 1 commit
  36. 31 Jan, 2017 1 commit
  37. 19 Nov, 2016 1 commit
  38. 16 Sep, 2016 1 commit