1. 24 Mar, 2018 1 commit
  2. 17 Mar, 2018 3 commits
  3. 16 Mar, 2018 2 commits
  4. 06 Mar, 2018 3 commits
  5. 01 Mar, 2018 1 commit
  6. 16 Feb, 2018 2 commits
  7. 12 Feb, 2018 1 commit
  8. 08 Feb, 2018 1 commit
  9. 06 Feb, 2018 1 commit
    • Greg Spencer's avatar
      Adds the semantic node traversal API. (#14060) · 14309b93
      Greg Spencer authored
      This adds an API for defining the semantic node traversal order.
      
      It adds a sortOrder argument to the Semantics widget, which is a class that can define a list of sort keys to sort on. The keys are sorted globally so that an order that doesn't have to do with the current widget hierarchy may be defined.
      
      It also adds a shortcut sortKey argument to the Semantics widget that simply sets the sortOrder to just contain that key.
      
      The platform side (flutter/engine#4540) gets an additional member in the SemanticsData object that is an integer describing where in the overall order each semantics node belongs. There is an associated engine-side change that takes this integer and uses it to order widgets for the platform's accessibility services.
      14309b93
  10. 01 Feb, 2018 1 commit
  11. 31 Jan, 2018 1 commit
    • jensjoha's avatar
      [kernel/flutter] Improve speed of first hot reload (#13699) · 5ccd5a1e
      jensjoha authored
      * [kernel/flutter] Improve speed of first hot reload
      
      * [kernel/flutter] Improve speed of first hot reload
      
      * Revert "[kernel/flutter] Improve speed of first hot reload"
      
      This reverts commit f3dc133878ec7405a8efb5715f1cfe720f4ea05f.
      
      * Revert "[kernel/flutter] Improve speed of first hot reload"
      
      This reverts commit f7bcb082b01cf9cf48f02c6aad9e5c79705def8f.
      
      * Revert "Revert "[kernel/flutter] Improve speed of first hot reload""
      
      This reverts commit 73c7a1a8e85a4c0397984d8b65a98b2f71bf84f3.
      
      * [kernel/flutter] Improve speed of first hot reload
      
      Do so by not evicting unnecessary paths (while still evicting paths
      that was changed between the generation of the package file and the
      initial upload).
      
      * Fix grammar in method name
      
      * Fix bad merge
      
      * Add method to super class
      5ccd5a1e
  12. 29 Jan, 2018 1 commit
    • Todd Volkert's avatar
      Extensibility improvements to flutter_tools (#14299) · 1859e82a
      Todd Volkert authored
      * Make the current command injected into the AppContext, allowing
        other classes to inject the current command.
      * Introduce `AssetBundleFactory`, an injected factory class for
        spawning instances of `AssetBundle`. This allows other run contexts
        to use custom asset bundling logic.
      * Clean up RunCommand by removing a 'packages' argument that duplicated
        a global argument by the same name (and for the same purpose).
        Duplicate arguments are confusing and error-prone.
      1859e82a
  13. 11 Jan, 2018 2 commits
  14. 04 Jan, 2018 2 commits
    • Alexander Aprelev's avatar
      Send RPC request to switch assets directory on hot reload. (#12872) · 8da5af55
      Alexander Aprelev authored
      * Send RPC request to switch assets directory on hot reload.
      
      This is needed to pick up updated assets that are expected to be picked up on hot reload.
      
      * Assert assets directory is not null.
      
      * Better multiple future wait
      
      * Add type annotation
      8da5af55
    • Siva's avatar
      support for --strong option (#13859) · 426d6b06
      Siva authored
      * Plumb a --strong option through to the front end server and the engine
      so that we can run flutter apps in preview-dart-2 and strong mode
      
      * - Address analyzer lint issues
      *- correctly set up strong mode option in the case of AOT builds
      426d6b06
  15. 22 Nov, 2017 1 commit
  16. 11 Nov, 2017 1 commit
  17. 10 Nov, 2017 1 commit
  18. 08 Nov, 2017 1 commit
  19. 30 Oct, 2017 1 commit
  20. 12 Oct, 2017 2 commits
    • Ryan Macnak's avatar
      Reapply "When parts of the program are changed in a hot reload, but not... · 07a4b4c4
      Ryan Macnak authored
      Reapply "When parts of the program are changed in a hot reload, but not executed during the reassemble, warn that a restart may be needed." (#12490)
      
      This reverts commit 5e7bcbac.
      
      `flutter run --benchmark` was triggering a different quick bailout path in the VM than `flutter run`. The failure has been fixed upstream.
      07a4b4c4
    • Alexander Aprelev's avatar
      Fix restart flow for preview-dart-2 mode. (#12496) · 85e4f052
      Alexander Aprelev authored
      * Fix restart flow for preview-dart-2 mode.
      
      Restart in preview-dart-2 needs to use kernel file and it has to be complete, rather than incremental kernel file.
      
      * Add curly braces
      
      * Do full compile on restart
      
      * Roll engine to pick up changes to hot reload for preview-dart-2
      85e4f052
  21. 05 Oct, 2017 1 commit
    • Ryan Macnak's avatar
      Revert "When parts of the program are changed in a hot reload, but not... · 5e7bcbac
      Ryan Macnak authored
      Revert "When parts of the program are changed in a hot reload, but not executed during the reassemble, warn that a restart may be needed. (#12304)" (#12406)
      
      This reverts commit 90028813.
      
      This change caused a few bots to fail with 'JSON-RPC error 110: Extension error', which is odd because _getUnusedChangesInLastReload is not an extension.
      5e7bcbac
  22. 04 Oct, 2017 1 commit
  23. 21 Sep, 2017 1 commit
  24. 31 Aug, 2017 1 commit
  25. 29 Aug, 2017 1 commit
  26. 28 Aug, 2017 1 commit
  27. 23 Aug, 2017 1 commit
  28. 22 Aug, 2017 3 commits
  29. 21 Aug, 2017 1 commit
    • Jacob Richman's avatar
      Bare bones widget inspector support. (#10332) · 5462ddb9
      Jacob Richman authored
      Bare bones widget inspector support.
      
      Toggle the widget inspector from the flutter tool by pressing 'i'.
      When the widget inspector is select mode:
      Pointer down to to inspect a widget.
      Pointer click to finalize selection of a widget. You can now interact
      with the application as you normally would but with the inspected widget
      highlighted.
      Click the inspect icon in bottom left corner of screen to reactivate
      select mode.
      5462ddb9