Fixed
Status Update
Comments
de...@gmail.com <de...@gmail.com> #2
public override fun hashCode() = if (this) 1 else 0
ap...@google.com <ap...@google.com> #3
Project: platform/frameworks/support
Branch: androidx-main
commit ca0326355a443f3a9619e075ff0ea5ae36c91602
Author: Prachi Mantri <prachimantri@google.com>
Date: Thu Dec 15 09:08:20 2022
Make CompactChipTapTargetaPadding public
Test: Manual Testing
Relnote: "CompactChipTapTargetPadding has been made public so that it
appears in the documentation"
Bug: b/234119038
Change-Id: If1e709a1c1a1252f54d11907cc2e412fd2818db9
M wear/compose/compose-material/api/current.txt
M wear/compose/compose-material/api/public_plus_experimental_current.txt
M wear/compose/compose-material/api/restricted_current.txt
M wear/compose/compose-material/src/commonMain/kotlin/androidx/wear/compose/material/Chip.kt
https://android-review.googlesource.com/2358182
Branch: androidx-main
commit ca0326355a443f3a9619e075ff0ea5ae36c91602
Author: Prachi Mantri <prachimantri@google.com>
Date: Thu Dec 15 09:08:20 2022
Make CompactChipTapTargetaPadding public
Test: Manual Testing
Relnote: "CompactChipTapTargetPadding has been made public so that it
appears in the documentation"
Bug:
Change-Id: If1e709a1c1a1252f54d11907cc2e412fd2818db9
M wear/compose/compose-material/api/current.txt
M wear/compose/compose-material/api/public_plus_experimental_current.txt
M wear/compose/compose-material/api/restricted_current.txt
M wear/compose/compose-material/src/commonMain/kotlin/androidx/wear/compose/material/Chip.kt
[Deleted User] <[Deleted User]> #4
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.wear.compose:compose-material:1.2.0-alpha02
jn...@google.com <jn...@google.com>
da...@gmail.com <da...@gmail.com> #6
da...@gmail.com <da...@gmail.com> #7
da...@gmail.com <da...@gmail.com> #8
na...@google.com <na...@google.com> #9
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.wear.compose:compose-material:1.1.0-rc01
Description
The code to determine the ScalingLazyListState.centerItemIndex has a flaw and could return the wrong item the center line of the viewport is between two items. The current code will find first item that either straddles or is below the center line.
Given that the gaps between items is typically a few dp in size this issues hasn't previously been noticed/reported.
The correct logic would be to find the item that straddles the center line or the item with its edge closest to the center.