Fixed
Status Update
Comments
jn...@google.com <jn...@google.com> #2
public override fun hashCode() = if (this) 1 else 0
jn...@google.com <jn...@google.com>
jn...@google.com <jn...@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
Description
Accessibility guidelineshttps://material.io/design/usability/accessibility.html#layout-and-typography recommend that tap/touch areas be no smaller that 48x48dp. The CompactChip in 1.0.0-beta03 of Wear Compose is only 32.dp tall and so doesn't meet these guidelines.
Add 8.dp of padding above and below the CompactChip to bring it into line with Accessibility guidelines.