1. 17 Oct, 2019 1 commit
  2. 30 Sep, 2019 1 commit
  3. 24 Sep, 2019 1 commit
  4. 31 Jul, 2019 1 commit
  5. 26 Jun, 2019 1 commit
    • Kate Lovett's avatar
      Preserving SafeArea : Part 2 (#34298) · f9118c0f
      Kate Lovett authored
      * WIP
      
      * Added tests and updated SafeArea implementation.
      
      * Analyzer nits
      
      * Review feedback
      
      * Updated for SnackBar and PersistentFooterButton cases, added tests to check other potential spots.
      
      * doc addition for SafeArea
      
      * Typos
      f9118c0f
  6. 13 Jun, 2019 1 commit
  7. 24 Apr, 2019 1 commit
    • rami-a's avatar
      Update SnackBar to allow for support of the new style from Material spec (#31275) · d4e4726a
      rami-a authored
      This PR introduces a number of changes and improvements to snack bars. This includes the ability to specify:
      
      floating style of snack bars that adhere to the updated Material spec
      elevation and shape on the SnackBar itself instead of relying on fixed values
      a snackBarTheme as part of ThemeData which allows you to customize all of the above on an app-wide level.
      This PR is includes the changes from #21484 as well as additional fixes and modifications. Thanks to @NikoYuwono for providing these changes and getting this off the ground!
      d4e4726a
  8. 20 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      some spaces formatting (#29452) · a6af4228
      Alexandre Ardhuin authored
      * some space formattings
      
      * always use blocks in if-else if a block is used
      
      * format spaces in for and while
      
      * allow multiline if conditions
      
      * fix missing space
      a6af4228
  9. 09 Mar, 2019 1 commit
  10. 07 Mar, 2019 1 commit
  11. 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
  12. 21 Feb, 2019 1 commit
  13. 25 Oct, 2018 1 commit
  14. 16 Oct, 2018 1 commit
  15. 09 Oct, 2018 1 commit
  16. 06 Oct, 2018 1 commit
  17. 12 Sep, 2018 1 commit
  18. 07 Aug, 2018 1 commit
  19. 02 Aug, 2018 1 commit
  20. 27 Jul, 2018 1 commit
  21. 23 Jul, 2018 1 commit
  22. 20 Jul, 2018 1 commit
    • jslavitz's avatar
      Changed duration (#19015) · 9a4db211
      jslavitz authored
      * Changed duration
      
      * Fixed column width for ios build error messages
      
      * fixed a couple things
      
      * fixed a couple things
      
      * accidental changes
      
      * added spaces
      
      * added spaces
      
      * Added test for default snackbar duration
      
      * Fixed link:
      
      * Final commit
      
      * Final commit2
      
      * Actual final commit
      9a4db211
  23. 16 Jul, 2018 2 commits
  24. 09 Jul, 2018 1 commit
  25. 03 Jul, 2018 2 commits
  26. 09 Mar, 2018 1 commit
  27. 02 Feb, 2018 1 commit
  28. 01 Feb, 2018 1 commit
  29. 31 Jan, 2018 1 commit
  30. 16 Dec, 2017 1 commit
    • Chris Bracken's avatar
      Apply media padding to snackbar contents (#13623) · 813be533
      Chris Bracken authored
      Applies any additional bottom, left, and right media padding inside the
      snackbar, if present. This accounts for the iPhone X home indicator
      widget and horizontal padding for the sensor housing notch in landscape
      orientation.
      813be533
  31. 24 Sep, 2017 1 commit
  32. 29 Aug, 2017 1 commit
  33. 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
  34. 07 Apr, 2017 1 commit
  35. 13 Mar, 2017 1 commit
  36. 04 Mar, 2017 1 commit
  37. 09 Feb, 2017 1 commit
  38. 23 Jan, 2017 1 commit