1. 06 May, 2019 2 commits
  2. 03 May, 2019 1 commit
    • Greg Spencer's avatar
      Re-land: Add support for Tooltip hover (#31699) · 11e0a725
      Greg Spencer authored
      This is a re-land of #31561, after fixing performance regressions.
      
      Added change listening to the MouseTracker so that the Listener and tooltip can react to whether or not a mouse is connected at all. Added a change check to make sure Listener only repaints when something changed.
      
      Fixes #22817
      11e0a725
  3. 02 May, 2019 1 commit
  4. 01 May, 2019 2 commits
  5. 30 Apr, 2019 2 commits
  6. 29 Apr, 2019 3 commits
  7. 25 Apr, 2019 3 commits
  8. 23 Apr, 2019 1 commit
  9. 22 Apr, 2019 2 commits
    • Greg Spencer's avatar
      Implement focus traversal for desktop platforms, shoehorn edition. (#30040) · 4218c0bc
      Greg Spencer authored
      Implements focus traversal for desktop platforms, including re-implementing the existing focus manager and focus tree.
      
      This implements a Focus widget that can be put into a widget tree to allow input focus to be given to a particular part of a widget tree.
      
      It incorporates with the existing FocusScope and FocusNode infrastructure, and has minimal breakage to the API, although FocusScope.reparentIfNeeded is removed, replaced by a call to FocusAttachment.reparent(), so this is a breaking change:
      
      FocusScopeNodes must now be attached to the focus tree using FocusScopeNode.attach, which takes a context and an optional onKey callback, and returns a FocusAttachment that should be kept by the widget that hosts the FocusScopeNode. This is necessary because of the need to make sure that the focus tree reflects the widget hierarchy.
      
      Callers that used to call FocusScope(context).reparentIfNeeded in their build method will call reparent  on a FocusAttachment instead, which they will obtain by calling FocusScopeNode.attach in their initState method. Widgets that own FocusNodes will need to call dispose on the focus node in their dispose method.
      
      Addresses #11344, #1608, #13264, and #1678
      Fixes #30084
      Fixes #26704
      4218c0bc
    • Dan Field's avatar
      rectMoreOrLess equals, prep for 64bit rects (#30942) · 37bc48f2
      Dan Field authored
      * rectMoreOrLess equals, prep for 64bit rects
      37bc48f2
  10. 18 Apr, 2019 1 commit
  11. 15 Apr, 2019 2 commits
  12. 10 Apr, 2019 1 commit
  13. 05 Apr, 2019 1 commit
  14. 22 Mar, 2019 1 commit
  15. 20 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      some spaces formatting (#29452) · a6af4228
      Alexandre Ardhuin authored
      * some space formattings
      
      * always use blocks in if-else if a block is used
      
      * format spaces in for and while
      
      * allow multiline if conditions
      
      * fix missing space
      a6af4228
  16. 19 Mar, 2019 1 commit
  17. 18 Mar, 2019 1 commit
  18. 13 Mar, 2019 1 commit
  19. 12 Mar, 2019 1 commit
  20. 11 Mar, 2019 1 commit
    • stuartmorgan's avatar
      Add support for scrollwheels (#22762) · 5922a40e
      stuartmorgan authored
      Adds support for discrete scroll events, such as those sent by a scroll wheel.
      
      Includes the plumbing to convert, dispatch, and handle these events, as well as
      Scrollable support for consuming them.
      5922a40e
  21. 09 Mar, 2019 1 commit
  22. 08 Mar, 2019 1 commit
  23. 07 Mar, 2019 1 commit
  24. 06 Mar, 2019 3 commits
  25. 02 Mar, 2019 1 commit
  26. 01 Mar, 2019 3 commits
  27. 25 Feb, 2019 1 commit
    • jslavitz's avatar
      Breaks the moveBy call from drag and dragFrom into two separate calls and... · 47724f97
      jslavitz authored
      Breaks the moveBy call from drag and dragFrom into two separate calls and changes the default behavior of DragStartBehavior to DragStartBehavior.start (#26438)
      
      * Breaking change which sets the default DragStartBehavior to DragStartBehavior.start and changes WidgetTester.drag and WidgetTester.dragFrom by breaking the moveBy function call into multiple pieces.
      47724f97