1. 14 Oct, 2021 2 commits
  2. 12 Oct, 2021 1 commit
  3. 11 Oct, 2021 1 commit
  4. 08 Oct, 2021 4 commits
  5. 07 Oct, 2021 6 commits
  6. 06 Oct, 2021 1 commit
  7. 05 Oct, 2021 1 commit
  8. 04 Oct, 2021 2 commits
  9. 01 Oct, 2021 2 commits
  10. 30 Sep, 2021 1 commit
    • Greg Spencer's avatar
      Add external focus node constructor to Focus widget (#90843) · d94c18d2
      Greg Spencer authored
      I've added a Focus.withExternalFocusNode constructor to the Focus widget (and the FocusScope widget) that makes it explicit that the widget's attributes won't affect the settings of the given focus node.
      
      This is to help address #83023, which is a snag in the API that people run into occasionally.
      
      This should help make it explicit when you want the widget attributes to take precedence, and when you don't.
      d94c18d2
  11. 29 Sep, 2021 2 commits
  12. 28 Sep, 2021 2 commits
    • LongCatIsLooong's avatar
      Reland "Make FilteringTextInputFormatter's filtering Selection/Composing... · 7684f8b7
      LongCatIsLooong authored
      Reland "Make FilteringTextInputFormatter's filtering Selection/Composing Region agnostic" #89327 (#90211)
      
      7684f8b7
    • Greg Spencer's avatar
      Add smoke tests for all the examples, fix 17 broken examples. (#89021) · ab2b0851
      Greg Spencer authored
      This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework.
      
      The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead.
      
      The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
      ab2b0851
  13. 24 Sep, 2021 1 commit
  14. 23 Sep, 2021 1 commit
  15. 22 Sep, 2021 3 commits
  16. 20 Sep, 2021 5 commits
  17. 17 Sep, 2021 1 commit
    • Renzo Olivares's avatar
      Create DeltaTextInputClient (#90205) · 4b330ddb
      Renzo Olivares authored
      * Create DeltaTextInputClient
      
      * Remove old tests as updateEditingValueWithDeltas is no longer implemented
      
      * fix analyzer
      
      * Update docs
      
      * Make example more general
      
      * Update docs
      
      * Add assert to check that TextInputClient is a DeltaTextInputClient
      
      * Update assert
      
      * More docs
      
      * update
      
      * Clean up docs
      
      * updates
      
      * Update docs
      
      * updates
      
      * Fix test
      
      * add test
      
      * updates
      
      * remove logs
      
      * fix tests
      
      * Address reviewer comments
      
      * Add text_input_utils.dart
      
      * Address reviewer comments
      4b330ddb
  18. 16 Sep, 2021 2 commits
  19. 15 Sep, 2021 2 commits