1. 15 Nov, 2019 1 commit
  2. 14 Nov, 2019 4 commits
  3. 13 Nov, 2019 2 commits
  4. 12 Nov, 2019 1 commit
  5. 11 Nov, 2019 1 commit
  6. 09 Nov, 2019 3 commits
  7. 08 Nov, 2019 3 commits
  8. 07 Nov, 2019 1 commit
  9. 06 Nov, 2019 5 commits
  10. 05 Nov, 2019 10 commits
  11. 04 Nov, 2019 1 commit
    • Nurhan Turgut's avatar
      Adding handling of TextInputClient.onConnectionClosed messages handli… (#43466) · 97cf355b
      Nurhan Turgut authored
      * Adding handling of TextInputClient.onConnectionClosed messages handling to Framework
      
      * Adding more test cases for closing connection to editable_text_test
      
      * fixing analyze error.
      
      * Fixing analyze error in the test file
      
      * Fixing comments on the new method
      
      * Adding more closing connection examples.
      
      * Indentation change
      
      * Remove auto-add white space
      
      * Changing the oncloseconnection behaviour to stop editing. Updating the tests
      
      * Addressing PR comments. Added explicit log for method channnels to the tests. Added comments to the interfaces.
      
      * add more documentation
      97cf355b
  12. 01 Nov, 2019 6 commits
  13. 31 Oct, 2019 2 commits
    • Gary Qian's avatar
      f9b8d688
    • Greg Spencer's avatar
      Don't allow Disabled InkWells to be focusable (#43848) · 0028887a
      Greg Spencer authored
      Makes sure that disabled InkWell/InkResponse and widgets that use them don't allow themselves to be focused.
      
      ListTile, PopupMenu, and Stepper were not setting canRequestFocus properly on the InkWell, and InkWell was allowing focus even if it was disabled (it was basically just relying on the containing widget to set canRequestFocus properly). Now InkWell must both be enabled (have an onTap or similar) and have canRequestFocus set to true.
      0028887a