1. 27 Sep, 2017 1 commit
  2. 22 Sep, 2017 1 commit
    • Ian Hickson's avatar
      Pin all dependencies ONCE AND FOR ALL (#12210) · 441b5c20
      Ian Hickson authored
      * Pin all dependencies ONCE AND FOR ALL
      
      This replaces the secret `flutter update-packages --upgrade` with a destructive `flutter update-packages --force-upgrade` that actually goes and pins every dependency and transitive dependency in every flutter package to the same version.
      
      * Add comments.
      441b5c20
  3. 12 Sep, 2017 2 commits
  4. 11 Sep, 2017 1 commit
    • Yegor's avatar
      only tap on widgets reachable by hit testing (#11767) · ba5b5e7f
      Yegor authored
      * only tap on widgets reachable by hit testing
      
      * use FractionalOffset
      
      * added tests
      
      * check finder finds correct widget
      
      * undo unintentional changes
      
      * address comments
      
      * style fix
      
      * add Directionality in test
      
      * fix analysis warning
      ba5b5e7f
  5. 06 Sep, 2017 4 commits
  6. 31 Aug, 2017 1 commit
  7. 22 Aug, 2017 1 commit
    • Carlo Bernaschina's avatar
      Add log to understand flakiness of commands_test (#11720) · a8aff388
      Carlo Bernaschina authored
      The flakiness of commands_test is generally visible via:
      
      ```
      drive:stdout:   Expected: 'log: paint'
      drive:stdout:     Actual: ''
      drive:stdout:      Which: is different. Both strings start the same, but the actual value is missing the following trailing characters: log: paint ...
      ```
      
      By returning the name of the test we will be able to understand if
      another test is running by reading the `Actual` value
      a8aff388
  8. 21 Aug, 2017 2 commits
  9. 14 Aug, 2017 1 commit
  10. 09 Aug, 2017 1 commit
  11. 07 Aug, 2017 1 commit
    • Chris Bracken's avatar
      Update IntelliJ project files for latest plugin (#11536) · cb14eb98
      Chris Bracken authored
      The most recent Flutter IntelliJ plugin replaces FLUTTER_MODULE with
      WEB_MODULE and eliminates the exclusion of packages/ directories.
      Use of the packages/ directory was turned off by default months ago, and
      is replaced by the .packages file.
      cb14eb98
  12. 04 Aug, 2017 1 commit
  13. 01 Aug, 2017 4 commits
  14. 28 Jul, 2017 2 commits
  15. 21 Jul, 2017 1 commit
    • 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
  16. 19 Jul, 2017 1 commit
  17. 13 Jul, 2017 1 commit
  18. 11 Jul, 2017 1 commit
  19. 23 Jun, 2017 1 commit
    • Ian Hickson's avatar
      Deep linking: automatically push the route hiearchy on load. (#10894) · 9adb4a78
      Ian Hickson authored
      The main purpose of this PR is to make it so that when you set the
      initial route and it's a hierarchical route (e.g. `/a/b/c`), it
      implies multiple pushes, one for each step of the route (so in that
      case, `/`, `/a`, `/a/b`, and `/a/b/c`, in that order). If any of those
      routes don't exist, it falls back to '/'.
      
      As part of doing that, I:
      
       * Changed the default for MaterialApp.initialRoute to honor the
         actual initial route.
      
       * Added a MaterialApp.onUnknownRoute for handling bad routes.
      
       * Added a feature to flutter_driver that allows the host test script
         and the device test app to communicate.
      
       * Added a test to make sure `flutter drive --route` works.
         (Hopefully that will also prove `flutter run --route` works, though
         this isn't testing the `flutter` tool's side of that. My main
         concern is over whether the engine side works.)
      
       * Fixed `flutter drive` to output the right target file name.
      
       * Changed how the stocks app represents its data, so that we can
         show a page for a stock before we know if it exists.
      
       * Made it possible to show a stock page that doesn't exist. It shows
         a progress indicator if we're loading the data, or else shows a
         message saying it doesn't exist.
      
       * Changed the pathing structure of routes in stocks to work more
         sanely.
      
       * Made search in the stocks app actually work (before it only worked
         if we happened to accidentally trigger a rebuild). Added a test.
      
       * Replaced some custom code in the stocks app with a BackButton.
      
       * Added a "color" feature to BackButton to support the stocks use case.
      
       * Spaced out the ErrorWidget text a bit more.
      
       * Added `RouteSettings.copyWith`, which I ended up not using.
      
       * Improved the error messages around routing.
      
      While I was in some files I made a few formatting fixes, fixed some
      code health issues, and also removed `flaky: true` from some devicelab
      tests that have been stable for a while. Also added some documentation
      here and there.
      9adb4a78
  20. 21 Jun, 2017 2 commits
  21. 16 Jun, 2017 2 commits
  22. 15 Jun, 2017 2 commits
  23. 14 Jun, 2017 2 commits
  24. 13 Jun, 2017 1 commit
  25. 09 Jun, 2017 1 commit
  26. 08 Jun, 2017 1 commit
  27. 07 Jun, 2017 1 commit