1. 25 Jan, 2020 1 commit
  2. 05 Dec, 2019 1 commit
  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. 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. 12 Sep, 2018 1 commit
  6. 02 Aug, 2018 1 commit
  7. 27 Jul, 2018 1 commit
  8. 23 Jul, 2018 1 commit
  9. 16 Jul, 2018 2 commits
  10. 05 Jun, 2018 1 commit
  11. 11 Apr, 2018 1 commit
    • Alexander Aprelev's avatar
      Roll engine to ed303c628fe4b322529f8cf01ecb38135a2bab73 (dart roll) · a2951a9a
      Alexander Aprelev authored
      Changes since last roll:
      ```
      ed303c628 Roll dart sdk again. Previous roll required 23ae4fa098 revert. (#4966)
      8cd272733 Revert "Roll dart to 7764e6962e22afcf4b58c4e3cef3147330f3c884. (#4960)" (#4965)
      9199b40f2 Revert "Support multiple shells in a single process. (#4932)" (#4964)
      6baff4c82 Support multiple shells in a single process. (#4932)
      31c5bb427 Roll dart to 7764e6962e22afcf4b58c4e3cef3147330f3c884. (#4960)
      c8e4c6984 Avoid copying the contents of large platform message responses (#4947)
      5ff527295 Update to use new vulkan GrBackendRenderTarget ctor. (#4962)
      0c8993a1a Update to use new vulkan GrBackendRenderTarget ctor (part 2) (#4963)
      132ebdda8 Revert "Roll src/third_party/skia/ 9874bf1bc..52e16d984 (135 commits) (#4958)" (#4961)
      11882ab9e Roll src/third_party/skia/ 9874bf1bc..52e16d984 (135 commits) (#4958)
      ```
      
      Add consts
      a2951a9a
  12. 02 Feb, 2018 1 commit
  13. 11 Jan, 2018 1 commit
  14. 24 Oct, 2017 1 commit
  15. 23 Oct, 2017 1 commit
  16. 22 Oct, 2017 1 commit
  17. 19 Oct, 2017 1 commit
    • Greg Spencer's avatar
      Fixes InputDecorator to work with textScaleFactor, fixes Material Design differences. (#12595) · 67cf7918
      Greg Spencer authored
      Fixes InputDecorator to work with textScaleFactor, fixes Material Design differences.
      
      There were a number of differences with the Material Design spec, including
      several different padding values and underline thickness.  This corrects
      that so that the decorator is in line with the Material Design spec now.
      
      Also, the decorator properly handles changes to the textScaleFactor, where
      before it would not re-layout when needed, painting the cursor and
      underline incorrectly.
      
      The decorator also now properly animates helper, error, and hint text when
      the textScaleFactor or input decoration properties change.
      
      Helper text is now properly displayed in dense mode, as the spec shows.
      Before this change, it was never displayed in dense mode.
      
      Fixes #12485
      67cf7918
  18. 02 Oct, 2017 1 commit
  19. 27 Sep, 2017 1 commit
  20. 15 May, 2017 1 commit
  21. 23 Apr, 2017 1 commit
  22. 13 Apr, 2017 1 commit
  23. 10 Apr, 2017 1 commit
  24. 08 Apr, 2017 1 commit
    • Alexandre Ardhuin's avatar
      upgrade to linter-0.1.30 (#9297) · 610955f8
      Alexandre Ardhuin authored
      * upgrade to linter-0.1.30
      
      * add prefer_is_empty lint
      * add directives_ordering lint
      * add no_adjacent_strings_in_list lint
      * add no_duplicate_case_values lint
      * add prefer_collection_literals lint
      * add prefer_const_constructors lint
      * add prefer_contains lint
      * add prefer_initializing_formals lint
      * add unnecessary_null_aware_assignments lint
      * add unnecessary_null_in_if_null_operators lint
      610955f8
  25. 07 Apr, 2017 1 commit
  26. 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
  27. 24 Mar, 2017 1 commit
  28. 21 Mar, 2017 1 commit
  29. 20 Mar, 2017 1 commit
  30. 17 Mar, 2017 1 commit
  31. 04 Mar, 2017 1 commit
  32. 24 Feb, 2017 1 commit
    • Adam Barth's avatar
      Add a `color` argument to `Container`. (#8396) · f20c3d10
      Adam Barth authored
      It's common to just want a simple colored box. Simple thing should be simple,
      so this patch adds a convenience argument to Continer for creating a box
      decoration that is just a color.
      
      Fixes #5555
      f20c3d10
  33. 17 Feb, 2017 1 commit
  34. 11 Feb, 2017 1 commit
  35. 04 Feb, 2017 1 commit
  36. 26 Jan, 2017 1 commit
  37. 22 Jan, 2017 1 commit
  38. 19 Jan, 2017 1 commit
    • Adam Barth's avatar
      Migrate from Input to TextField · b2a2ee72
      Adam Barth authored
      We expect TextField to be used much more often than Input. This patch updates
      our old example code to use TextField instead.
      
      See #7031
      b2a2ee72
  39. 22 Nov, 2016 1 commit
    • Adam Barth's avatar
      Rename Flexible to Expanded and improve docs (#6978) · 8ca4caa4
      Adam Barth authored
      This patch replaces uses of Flexible with Expanded where we're using
      FlexFit.tight. We still need to think of a better name for the
      FlexFit.loose variant.
      
      Also, improve the docs for Row, Column, Flex, and RenderFlex to be more
      problem-oriented and to give a complete account of the layout algorithn.
      
      Fixes #6960
      Fixes #5169
      8ca4caa4