1. 25 Jul, 2023 1 commit
  2. 22 May, 2023 1 commit
  3. 18 Apr, 2023 1 commit
  4. 17 Apr, 2023 1 commit
  5. 11 Apr, 2023 1 commit
  6. 27 Mar, 2023 1 commit
  7. 24 Mar, 2023 1 commit
  8. 22 Mar, 2023 1 commit
  9. 23 Feb, 2023 1 commit
    • David Neuy's avatar
      Fix DataCell overflows when cell height is large by adding dataRowMinHeight,... · 3681b27a
      David Neuy authored
      Fix DataCell overflows when cell height is large by adding dataRowMinHeight, dataRowMaxHeight props. (#114338)
      
      * Fix DataCell overflows when cell height is large by adding dataRowMinHeight, dataRowMaxHeight props.
      
      * Fix DataCell overflows when cell height is large by adding dataRowMinHeight, dataRowMaxHeight props - add tests.
      
      * Fix analysis errors
      
      * Review changes.
      
      * Add asserts for dataRowMinHeight and dataRowMaxHeight
      
      * Add asserts for dataRowMinHeight and dataRowMaxHeight
      
      * Make dataRowHeight a computed getter
      
      * Remove get only dataRowHeight from hashCode...
      
      * Update deprecated after
      
      * Add new line at end of AUTHORS
      
      * Apply suggestions from code review
      
      * Update packages/flutter/test/material/data_table_test.dart
      
      ---------
      Co-authored-by: 's avatarKate Lovett <katelovett@google.com>
      3681b27a
  10. 15 Feb, 2023 1 commit
    • Jan Kuß's avatar
      Fix `StretchingOverscrollIndicator` not handling directional changes correctly (#116548) · 4ad47fb4
      Jan Kuß authored
      * Fix overscroll behaviour of `StretchingOverscrollIndicator` on directional change while scrolling
      
      * Remove trailing spaces
      
      * Change naming of `_StretchDirection` values to `trailing` and `leading`
      
      * Remove trailing space
      
      * Apply suggestions from code review
      
      * Fix stretching overscroll indicator direction on fling
      
      * Fix issue when changing direction while recede animation is playing
      
      * Remove trailing space
      
      * Add test for changing direction during recede animation
      4ad47fb4
  11. 07 Feb, 2023 1 commit
  12. 04 Feb, 2023 2 commits
  13. 08 Dec, 2022 1 commit
    • ivirtex's avatar
      Add `CupertinoSliverNavigationBar` large title magnification on over scroll (#110127) · ef40e3ea
      ivirtex authored
      * Add magnification of CupertinoSliverNavigationBar large title
      
      * Fix padding in maximum scale computation
      
      * Apply magnification by using RenderBox
      
      * Do not pass key to the superclass constructor
      
      * Use `clampDouble` instead of `clamp` extension method
      
      * Remove trailing whitespaces to make linter happy
      
      * Name test variables more precisely
      
      * Move transform computation to `performLayout` and implement `hitTestChildren`
      
      * Address comments
      
      * Address comments
      
      * Address comments
      
      * Update comment about scale
      
      * Fix hit-testing
      
      * Fix hit-testing again
      
      * Make linter happy
      
      * Implement magnifying without using LayoutBuilder
      
      * Remove trailing spaces
      
      * Add hit-testing of the large title
      
      * Remove whitespaces
      
      * Fix scale computation and some tests
      
      * Fix remaining tests
      
      * Refactor and fix comments
      
      * Update comments
      ef40e3ea
  14. 06 Dec, 2022 1 commit
  15. 25 Oct, 2022 1 commit
  16. 24 Oct, 2022 1 commit
  17. 19 Oct, 2022 1 commit
  18. 04 Oct, 2022 2 commits
  19. 13 Sep, 2022 1 commit
  20. 15 Jul, 2022 1 commit
  21. 19 Apr, 2022 1 commit
  22. 13 Apr, 2022 2 commits
  23. 14 Mar, 2022 1 commit
  24. 26 Jan, 2022 1 commit
  25. 20 Jan, 2022 1 commit
  26. 13 Jan, 2022 1 commit
  27. 11 Jan, 2022 1 commit
  28. 13 Oct, 2021 1 commit
  29. 12 Oct, 2021 1 commit
  30. 08 Oct, 2021 1 commit
  31. 28 Sep, 2021 1 commit
  32. 22 Sep, 2021 1 commit
  33. 16 Sep, 2021 1 commit
  34. 08 Sep, 2021 1 commit
  35. 02 Sep, 2021 1 commit
  36. 27 Aug, 2021 1 commit
  37. 19 Jul, 2021 1 commit
    • Callum Moffat's avatar
      Don't synthesize primary pointer button unless buttons = 0 (#85808) · 6909c544
      Callum Moffat authored
      Some embeddings might send pointer events with buttons = 0x2 (right-click) for touch or stylus device kinds. If the primary button is synthesized for those events, they won't behave properly. Without this change it's not possible to trigger "secondary tap" events on a TapGestureRecognizer while using a stylus or on an iPad trackpad, since that recognizer will receive buttons = 0x3.
      6909c544