1. 20 Mar, 2018 1 commit
  2. 01 Feb, 2018 1 commit
  3. 22 Oct, 2017 1 commit
  4. 21 Sep, 2017 1 commit
  5. 11 Sep, 2017 1 commit
  6. 03 Aug, 2017 1 commit
  7. 25 Jul, 2017 1 commit
  8. 23 Jun, 2017 1 commit
  9. 21 Jun, 2017 3 commits
  10. 05 May, 2017 1 commit
  11. 24 Apr, 2017 1 commit
    • Adam Barth's avatar
      FocusNode.requestFocus should show the keyboard (#9558) · 55f33468
      Adam Barth authored
      This patch introduces the notion of a keyboard token, which generalizes the
      logic in EditableText for distinguishing between gaining focus by default and
      gaining focus because of an explicit use action.
      
      Fixes #7985
      55f33468
  12. 07 Apr, 2017 1 commit
  13. 05 Apr, 2017 1 commit
  14. 31 Mar, 2017 1 commit
    • Adam Barth's avatar
      Improve focus management (#9074) · 89aaaa9c
      Adam Barth authored
      We now have an explicit focus tree that we manage. Instead of using
      GlobalKeys to manage focus, we use FocusNode and FocusScopeNode objects.
      The FocusNode is Listenable and notifies when its focus state changes.
      
      Focus notifications trigger by tree mutations are now delayed by one
      frame, which is necessary to handle certain complex tree mutations. In
      the common case of focus changes being triggered by user input, the
      focus notificiation still arives in the same frame.
      89aaaa9c