1. 16 Oct, 2019 1 commit
  2. 15 Oct, 2019 1 commit
  3. 10 Oct, 2019 1 commit
    • Greg Spencer's avatar
      Re-land keyboard traversal PRs (#42278) · ce150971
      Greg Spencer authored
      This attempts to reland #40186 and #41220, that were reverted in #41945.
      
      The main modifications from the original PRs are that I predefine the shortcuts and actions maps instead of defining them inline in the build function, and I use a new mapEquals to do a deep comparison so that we don't rebuild modified things if the contents of the map haven't changed.
      
      I also eliminated an operator== and hashCode that were defined on the Actions widget, since widgets shouldn't have those. (it's too bad though: I get an 85% speedup if we leave this in! Too bad it prevents rebuilding of the children...)
      
      Fixes #40101
      ce150971
  4. 30 Sep, 2019 1 commit
  5. 24 Sep, 2019 1 commit
  6. 17 Sep, 2019 1 commit
  7. 14 May, 2019 1 commit
  8. 29 Apr, 2019 1 commit
  9. 29 Mar, 2019 1 commit
  10. 22 Mar, 2019 1 commit
  11. 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
  12. 29 Jan, 2019 1 commit
  13. 19 Nov, 2018 1 commit
  14. 16 Oct, 2018 1 commit
  15. 03 Oct, 2018 1 commit
  16. 12 Sep, 2018 1 commit
  17. 02 Aug, 2018 1 commit
  18. 27 Jul, 2018 1 commit
  19. 23 Jul, 2018 1 commit
  20. 16 Jul, 2018 2 commits
  21. 20 Jun, 2018 1 commit
  22. 19 Jun, 2018 1 commit
  23. 09 May, 2018 1 commit
  24. 20 Apr, 2018 1 commit
  25. 22 Mar, 2018 1 commit
    • Ian Hickson's avatar
      Clean up the existing Navigator API. (#15718) · aba0379d
      Ian Hickson authored
      This is not a grand refactor yet, it's just cleaning up what we have
      already, so that people who keep using this API (e.g. dialogs) have
      something coherent to deal with.
      
      The major changes are that Navigator and NavigatorState have the same
      API now, that most of the examples use `<void>` instead of `<Null>`,
      that the navigator observer can see replaces, and that the `settings`
      is moved from ModalRoute to Route. I also cleaned up some of the API
      documentation.
      aba0379d
  26. 09 Mar, 2018 1 commit
  27. 15 Feb, 2018 1 commit
  28. 30 Jan, 2018 1 commit
  29. 14 Dec, 2017 1 commit
  30. 08 Dec, 2017 1 commit
  31. 22 Nov, 2017 1 commit
    • Ian Hickson's avatar
      Popup menus RTL (#13110) · 34ba6be9
      Ian Hickson authored
      This fixes the popup menu code to do a better job of expanding
      smoothly regardless of which side of the screen it's on. It still
      results in a bidirection growth when positioned at the bottom of the
      screen, so maybe we'll need to animate menus differently, but that's
      a problem for another patch.
      
      Also, improve some docs and provide RelativeRect.toSize which I needed
      at one point while building this patch (though it didn't survive all
      the way to the end).
      34ba6be9
  32. 31 Aug, 2017 1 commit
  33. 01 Aug, 2017 1 commit
    • perlatus's avatar
      PopupMenuButton: create IconButton if child is Icon (#10230) · d1b222be
      perlatus authored
      * PopupMenuButton: create IconButton if child is Icon
      
      Otherwise the resulting button has an abnormally small and rectangular
      area. With multiple PopupMenuButton(child: Icon) they get squished
      together in the AppBar.
      
      * Add separate icon argument to PopupMenuButton
      
      * Fix style issues and tweak dartdocs
      
      * Add tests for icon argument to PopupMenuButton
      
      * Group icon tests and fix broken test, analyzer warnings
      
      * Test that the correct custom icon is present
      
      * Apply De Morgan's to work around dart analyzer bug
      
      see: https://github.com/dart-lang/sdk/issues/30288
      d1b222be
  34. 02 May, 2017 1 commit
  35. 20 Apr, 2017 1 commit
  36. 13 Apr, 2017 1 commit
  37. 07 Apr, 2017 1 commit
  38. 29 Aug, 2016 1 commit
  39. 27 Jun, 2016 1 commit
    • Adam Barth's avatar
      Change how navigator prevents redundant operations (#4769) · 2af668f8
      Adam Barth authored
      * Change how navigator prevents redundant operations
      
      Instead of requiring transactions, we now cancel all active pointers that are
      interacting with the navigator and absorb future pointers until we get a chance
      to build. This approach isn't perfect (e.g., events that trigger off the
      cancelled pointers could still interact with the navigator), but it should be
      better than the current transaction-based approach.
      
      Fixes #4716
      
      * Remove openTransaction
      
      * test
      
      * fixup
      2af668f8