1. 20 May, 2021 1 commit
  2. 28 Aug, 2020 1 commit
  3. 20 Aug, 2020 1 commit
  4. 23 Jul, 2020 1 commit
  5. 11 Jun, 2020 1 commit
  6. 27 Nov, 2019 2 commits
    • 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
    • Alexandre Ardhuin's avatar
  7. 22 Mar, 2019 1 commit
  8. 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
  9. 12 Sep, 2018 1 commit
  10. 05 Jun, 2018 1 commit
  11. 12 Mar, 2018 1 commit
  12. 05 Jun, 2017 1 commit
  13. 03 May, 2017 1 commit
  14. 05 Apr, 2017 1 commit
    • Ian Hickson's avatar
      Code cleanup for physics (#9193) · cf991a34
      Ian Hickson authored
      * Add tolerance argument to FrictionSimulation.
      * Change FrictionSimulation.through to setting tolerance
        via the constructor rather than afterwards.
      * Allow SimulationGroup constructor to take tolerance argument.
      * Add a toString for SpringDescription.
      * Add a toString for SpringSimulation.
      * Push this change to BouncingScrollSimulation.
      cf991a34
  15. 01 Nov, 2016 1 commit
  16. 20 May, 2016 1 commit
  17. 27 Apr, 2016 1 commit
  18. 04 Apr, 2016 1 commit
  19. 21 Mar, 2016 1 commit
    • Adam Barth's avatar
      Scrollable sometimes pushes frames forever · 5a5fcb95
      Adam Barth authored
      We were setting a negative velocity tolerance, which never triggered because we
      assume tolerances are positive numbers. Now we use a positive tolerance and
      assert to catch this case in the future.
      
      Fixes #2765
      5a5fcb95
  20. 14 Mar, 2016 1 commit
  21. 11 Mar, 2016 1 commit
    • Ian Hickson's avatar
      Enable ALL THE LINTS · 1b9cd520
      Ian Hickson authored
      Well, all the easy ones, anyway.
      
      For some reason `// ignore:` isn't working for me so I've disabled
      lints that need that. Also disabled those that require a ton of work
      (which I'm doing, but not in this PR, to keep it reviewable).
      
      This adds:
      - avoid_init_to_null
      - library_names
      - package_api_docs
      - package_names
      - package_prefixed_library_names
      - prefer_is_not_empty
      - sort_constructors_first
      - sort_unnamed_constructors_first
      - unnecessary_getters_setters
      1b9cd520
  22. 01 Mar, 2016 1 commit
  23. 12 Nov, 2015 1 commit
    • Hixie's avatar
      flutter analyze command · a0227cab
      Hixie authored
      Other changes in this patch:
      - Make the 'flutter' tool say "Updating flutter tool..." when it calls
        pub get, to avoid confusion about what the pub get output is about.
      - Make the bash flutter tool call pub get when the revision has
        changed. (This was already happening on Windows.)
      - Fix a raft of bugs found by the analyzer.
      - Fix some style nits in various bits of code that happened to be near
        things the analyzer noticed.
      - Remove the logic in "flutter test" that would run "pub get", since
        upon further reflexion it was determined it didn't work anyway.
        We'll probably have to add better diagnostics here and say to run the
        updater script.
      - Remove the native velocity tracker script, since it was testing code
        that has since been removed.
      
      Notes on ignored warnings:
      - We ignore warnings in any packages that are not in the Flutter repo or
        in the author's current directory.
      - We ignore various irrelevant Strong Mode warnings. We still enable
        strong mode because even though it's not really relevant to our needs,
        it does (more or less accidentally) catch a few things that are
        helpful to us.
      - We allow CONSTANTS_LIKE_THIS, since we get some of those from other
        platforms that we are copying for sanity and consistency.
      - We allow one-member abstract classes since we have a number of them
        where it's perfectly reasonable.
      - We unfortunately still ignore warnings in mojom.dart autogenerated
        files. We should really fix those but that's a separate patch.
      - We verify the actual source file when we see the 'Name non-constant
        identifiers using lowerCamelCase.' lint, to allow one-letter variables
        that use capital letters (e.g. for physics expressions) and to allow
        multiple-underscore variable names.
      - We ignore all errors on lines that contain the following magic
        incantation and a "#" character:
          // analyzer doesn't like constructor tear-offs
      - For all remaining errors, if the line contains a comment of the form
          // analyzer says "..."
        ...then we ignore any errors that have that "..." string in them.
      a0227cab
  24. 25 Sep, 2015 1 commit
  25. 27 Jul, 2015 1 commit
  26. 14 Jul, 2015 1 commit
  27. 09 Jul, 2015 1 commit
  28. 06 Jul, 2015 2 commits
  29. 02 Jul, 2015 1 commit