1. 11 Jun, 2020 1 commit
  2. 07 Apr, 2020 1 commit
    • Greg Spencer's avatar
      Revise Action API (#42940) · 0f68b46f
      Greg Spencer authored
      This updates the Action API in accordance with the design doc for the changes: flutter.dev/go/actions-and-shortcuts-design-revision
      
      Fixes #53276
      0f68b46f
  3. 10 Mar, 2020 1 commit
  4. 20 Feb, 2020 1 commit
  5. 07 Jan, 2020 1 commit
  6. 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
  7. 28 Oct, 2019 1 commit
  8. 01 May, 2019 1 commit
  9. 04 Apr, 2019 1 commit
  10. 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
  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. 30 Jan, 2019 1 commit
  13. 10 Jan, 2019 1 commit
  14. 18 Dec, 2018 1 commit
  15. 30 Oct, 2018 1 commit
    • Ian Hickson's avatar
      Allow ChangeNotifier to be mixed in again (#23631) · c319b890
      Ian Hickson authored
      Luckily this class didn't actually need to extend its superclass, it
      only implements the interface. So we can change `extends` to
      `implements` and that's close enough, while allowing the class to be
      mixed in again.
      c319b890
  16. 27 Oct, 2018 1 commit
  17. 12 Sep, 2018 1 commit
  18. 01 Mar, 2018 1 commit
  19. 19 Jan, 2018 1 commit
  20. 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
  21. 21 Sep, 2017 1 commit
  22. 03 Aug, 2017 1 commit
  23. 21 Jun, 2017 3 commits
  24. 09 Jun, 2017 1 commit
  25. 24 May, 2017 1 commit
  26. 13 Apr, 2017 1 commit
  27. 06 Apr, 2017 1 commit
  28. 02 Apr, 2017 1 commit
    • Adam Barth's avatar
      Rationalize text input widgets (#9119) · ae899486
      Adam Barth authored
      After this patch, there are three major text input widgets:
      
       * EditableText. This widget is a low-level editing control that
         interacts with the IME and displays a blinking cursor.
      
       * TextField. This widget is a Material Design text field, with all the
         bells and whistles. It is highly configurable and can be reduced down
         to a fairly simple control by setting its `decoration` property to
         null.
      
       * TextFormField. This widget is a FormField that wraps a TextField.
      
      This patch also replaces the InputValue data model for these widgets
      with a Listenable TextEditingController, which is much more flexible.
      
      Fixes #7031
      ae899486
  29. 31 Mar, 2017 1 commit
  30. 29 Mar, 2017 1 commit
  31. 06 Mar, 2017 1 commit
  32. 28 Feb, 2017 1 commit
    • Adam Barth's avatar
      Add ValueNotifier (#8463) · 9a83659d
      Adam Barth authored
      It's common to have a ChangeNotifier that wraps a single value. This class
      makes that easy by providing a generic implementation.
      9a83659d
  33. 30 Jan, 2017 1 commit
  34. 20 Jan, 2017 1 commit
    • Adam Barth's avatar
      Strengthen animation listener iteration patterns (#7566) · 0f1d9775
      Adam Barth authored
      This patch aligns the iteration patterns used by animations and
      ChangeNotifier. They now both respect re-entrant removal of listeners
      and coalesce duplication registrations. (Also, ChangeNotifier
      notification is no longer N^2).
      
      This patch introduces ObserverList to avoid the performance regression that the
      previous version of this patch caused.
      
      Fixes #7533
      0f1d9775
  35. 19 Jan, 2017 2 commits
  36. 17 Jan, 2017 1 commit
  37. 05 Jan, 2017 1 commit