1. 04 Dec, 2019 1 commit
  2. 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
  3. 22 Nov, 2019 1 commit
  4. 18 Sep, 2019 1 commit
  5. 13 Sep, 2019 1 commit
  6. 05 Sep, 2019 1 commit
    • Ian Hickson's avatar
      Docs (#39198) · a415c76b
      Ian Hickson authored
      * Minor improvements to framework documentation.
      
      * maybePop documentation fix
      
      * Mark some flutter_test arguments required.
      
      Without these set, we get a crash.
      
      * Minor correction to ListView docs
      a415c76b
  7. 23 Aug, 2019 2 commits
    • Greg Spencer's avatar
      Normalize assert checking of clipBehavior (#38568) · 365f577c
      Greg Spencer authored
      I noticed that we were pretty inconsistent with the way that we checked the value of clipBehavior in the framework, so I normalized the usages and updated docs where necessary.
      
      This is a breaking change if you used to pass null explicitly to FlatButton, OutlineButton or RaisedButton constructors, expecting to get Clip.none. It will now assert if you do that. Existing implementations that pass null implicitly by not specifying clipBehavior won't need to change their call sites. It always implicitly defaulted to Clip.none before, and it will continue to do that, it's only places where it was explicitly set to null in order to get the implicit default that it will fail.
      365f577c
    • Michael Goderbauer's avatar
      TweenAnimationBuilder for building custom animations without managing an... · 97df4033
      Michael Goderbauer authored
      TweenAnimationBuilder for building custom animations without managing an AnimationController (#38317)
      
      97df4033
  8. 01 Aug, 2019 1 commit
  9. 10 Jul, 2019 1 commit
    • Greg Spencer's avatar
      Remove reverseDuration from implicitly animated widgets, since it's ignored. (#35785) · e3a08d23
      Greg Spencer authored
      When I added reverseDuration to animation controllers in #32730, I also added it to the implicit animations that Flutter has. However, as @efortuna pointed out to me, it doesn't actually do anything there, since all of the intrinsic animations run forwards, not in the reverse direction, and there's no way to reverse them.
      
      So, this PR removes the reverseDuration argument from the implicit animations to avoid confusion.
      
      Fixes #35769
      e3a08d23
  10. 09 Jul, 2019 1 commit
    • John Ryan's avatar
      add sample code for AnimatedContainer (#35225) · 871b5898
      John Ryan authored
      * add sample code for AnimatedContainer
      
      * use stateful_widget_scaffold snippet template
      
      * add sample explanation
      
      * add setState() to example assumptions for analyzer
      
      * update description
      
      * use snippet instead of sample
      
      * change sample to match assets-for-api-docs
      
      * remove constant
      
      * update AnimatedContainer sample description
      
      add indication the example is depicted by the video and animates when
      tapped
      
      * fix example formatting
      
      * make sample conform to 80 col limit
      
      * add "implemented below" to illustration description
      
      * formatting for readability
      871b5898
  11. 13 Jun, 2019 1 commit
  12. 01 Jun, 2019 1 commit
  13. 16 May, 2019 1 commit
  14. 29 Apr, 2019 1 commit
  15. 05 Apr, 2019 1 commit
  16. 03 Apr, 2019 1 commit
  17. 18 Mar, 2019 1 commit
    • Filip Hracek's avatar
      Add sample to forEachTween (#29195) · 644f499a
      Filip Hracek authored
      The current documentation for `AnimatedWidgetBaseState.forEachTween` is exhaustive but a little hard to grok. This dartdoc example provides some clarity.
      644f499a
  18. 09 Mar, 2019 1 commit
  19. 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
  20. 29 Jan, 2019 1 commit
  21. 08 Jan, 2019 1 commit
  22. 18 Dec, 2018 2 commits
  23. 08 Nov, 2018 1 commit
  24. 16 Oct, 2018 1 commit
  25. 23 Sep, 2018 1 commit
  26. 14 Sep, 2018 1 commit
  27. 12 Sep, 2018 1 commit
  28. 07 Sep, 2018 1 commit
  29. 30 Aug, 2018 1 commit
  30. 28 Aug, 2018 1 commit
  31. 24 Aug, 2018 1 commit
  32. 15 Aug, 2018 1 commit
  33. 09 Aug, 2018 1 commit
  34. 03 Aug, 2018 1 commit
    • liyuqian's avatar
      Add Clip enum to Material and related widgets (#18576) · 9ffa1c51
      liyuqian authored
      See details in our proposal for this breaking API change and #18057. This PR setup all code paths to allow the change but doesn't change the clip behavior by itself. We'll change `defaultClipBehavior` from `Clip.antiAlias` to `Clip.none` in the following PR to change the clip behavior and update tests.
      9ffa1c51
  35. 31 Jul, 2018 1 commit
  36. 20 Jul, 2018 1 commit
    • Ian Hickson's avatar
      Increase verbosity on bots during setup and other minor cleanup (#19526) · 35346b49
      Ian Hickson authored
      The verbosity change is to help track down timeouts that currently look like:
      
      ```
      C:\Windows\Temp\flutter sdk>call bin\flutter.bat config --no-analytics
      Checking Dart SDK version...
      Downloading Dart SDK from Flutter engine c5a63d28bf3735569c8187753bc490d8351a8363...
      Unzipping Dart SDK...
      Updating flutter tool...
      ```
      35346b49
  37. 21 Jun, 2018 1 commit
  38. 19 Jun, 2018 1 commit