1. 18 Jan, 2019 1 commit
  2. 09 Jan, 2019 1 commit
  3. 08 Jan, 2019 1 commit
  4. 07 Jan, 2019 1 commit
  5. 08 Nov, 2018 1 commit
  6. 02 Nov, 2018 1 commit
  7. 16 Oct, 2018 1 commit
  8. 14 Sep, 2018 1 commit
  9. 12 Sep, 2018 1 commit
  10. 07 Sep, 2018 1 commit
  11. 21 Aug, 2018 1 commit
  12. 18 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Fixes resulting from audit of issues links (#20772) · 8c79f40d
      Ian Hickson authored
      * Fixes resulting from audit of issues links
      
      I looked at every link to GitHub in our repo. For cases where we had a TODO that was waiting for a bug to be fixed, and the bug has now been fixed, I applied the pending change. For cases where the link was out of date, I updated the link.
      
      * Update run_test.dart
      
      skip this test again since it failed on linux and macos bots
      8c79f40d
  13. 13 Jun, 2018 1 commit
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
  14. 11 Jun, 2018 1 commit
    • Greg Spencer's avatar
      Update typedef syntax to use Function notation and turn on lint for old notation. (#18362) · 6c56bb24
      Greg Spencer authored
      Now that Dart 1 is turned off, reapplying my change to turn on the prefer_generic_function_type_aliases analysis option, and fix all the typedefs to Dart 2 preferred syntax.
      
      Also eliminated the unused analysis_options_repo.yaml file and turned on public_member_api_docs in analysys_options.yaml.
      
      No logic changes, just changing the typedef syntax for all typedefs, and updating analysis options.
      6c56bb24
  15. 05 Jun, 2018 1 commit
  16. 30 May, 2018 2 commits
  17. 03 May, 2018 1 commit
  18. 20 Mar, 2018 1 commit
  19. 12 Mar, 2018 1 commit
  20. 15 Feb, 2018 1 commit
  21. 01 Feb, 2018 1 commit
  22. 31 Jan, 2018 1 commit
  23. 27 Jan, 2018 1 commit
  24. 25 Jan, 2018 1 commit
  25. 19 Jan, 2018 1 commit
  26. 21 Jul, 2017 2 commits
    • Ian Hickson's avatar
      Add documentation and clean up code. (#11330) · 8f56f6fd
      Ian Hickson authored
      Mainly, this adds documentation to members that were previously
      lacking documentation.
      
      It also adds a big block of documentation about improving performance
      of widgets.
      
      This also removes some references to package:collection and adds
      global setEquals and listEquals methods in foundation that we can use.
      (setEquals in particular should be much faster than the
      package:collection equivalent, though both should be faster as they
      avoid allocating new objects.) All remaining references now qualify
      the import so we know what our remaining dependencies are.
      
      Also lots of code reordering in Flutter driver to make the code
      consistent and apply the style guide more thoroughly.
      8f56f6fd
    • Collin Jackson's avatar
      Fix physics with NestedScrollView (#11326) · e0f3001f
      Collin Jackson authored
      * Fix physics with NestedScrollView
      
      * Review feedback
      e0f3001f
  27. 19 Jul, 2017 1 commit
  28. 08 Jun, 2017 1 commit
  29. 06 Jun, 2017 1 commit
  30. 02 Jun, 2017 1 commit
  31. 03 May, 2017 1 commit
  32. 02 May, 2017 1 commit
    • Ian Hickson's avatar
      Tapping a ScrollView during overscroll got it stuck. (#9721) · f64bfba8
      Ian Hickson authored
      Fixes https://github.com/flutter/flutter/issues/8476
      
      More detailed list of changes in this patch:
      
      * Replaced the didTouch special logic with more generic logic that
        uses Activities instead. Now instead when you tap down the
        Scrollable calls `hold()` which begins a HoldScrollActivity which is
        a hybrid of DragStartDetails and IdleScrollActivity and can be
        canceled. When you let go, it gets canceled and that goes ballistic.
      
      * Make DragGestureRecognizer more aggressive about grabbing pointers,
        otherwise a second pointer in a situation with competing horizontal
        and vertical recognizers always gets taken by the other one.
      
      * Fixed the _GestureSemantics widget to call the "down" callbacks so
        that it follows the same pattern as "real" interactions.
      
      * Added tests for the above.
      
      * Added a hashCode to ScrollActivity.toString (and subclasses).
      
      * Added a toString to ScrollDragController, and include it in
        DragScrollActivity's toString.
      
      * s/coorindator/coordinator/
      
      * Add a comment in DragStartDetails to distinguish it from the
        otherwise identical DragDownDetails, so we're not tempted to merge
        them.
      f64bfba8
  33. 30 Apr, 2017 1 commit
  34. 27 Apr, 2017 1 commit
    • Adam Barth's avatar
      Add NestedScrollView (#9640) · 744c9126
      Adam Barth authored
      A NestedScrollView lets you implement patterns where you have a header, tabs,
      and additional scrollers inside the tabs.
      
      Fixes #8359
      744c9126