material-components / material-components/material-components-android
[BottomSheetDragHandleView] Background colour incorrect
Nobody has claimed this yet.
- Dominant language
- Java
- Stars
- 17.4k
- Forks
- 3.2k
- PR merge metrics
- No merged PRs in 30d
Description
### Description
Bottom sheet drag handle appears far darker than the Material 3 design docs.

### Docs

### Specs

I looks like the 40% alpha is missing for the MDC Android implementation. Changing the default style fixes it.
```xml
@style/Widget.Xxx.BottomSheet.DragHandle
...
<!-- Matches specs -->
<item name="android:alpha">0.4</item>
```
### Code
https://github.com/material-components/material-components-android/blob/4046525b20ff81c4f4fef654b9e8f09ffd7f5a81/lib/java/com/google/android/material/bottomsheet/res/values/styles.xml#L92
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.