material-components-android
material-components-android copied to clipboard
Modular and customizable Material Design UI components for Android
Bumps [com.google.dagger:dagger-android](https://github.com/google/dagger) from 2.51.1 to 2.52. Release notes Sourced from com.google.dagger:dagger-android's releases. Dagger 2.52 Notes: Dagger KSP now requires at least KSP 1.9.24-1.0.20. Bug fixes Fixed #4302: Suppress deprecation warnings...
### Thanks for starting a pull request on Material Components! #### Don't forget: - [x] Identify the component the PR relates to in brackets in the title. `[Buttons] Updated documentation`...
**Description:** I have already raised a Stack Overflow question for the same: (https://stackoverflow.com/q/71338984/9520315) **Expected behavior:** The card shouldn't blink while returning from another activity. **Source code:** "Transition between activities" section...
**Description:** Expanded BottomSheetDialog shouldn't have top insets when it's in the bottom split screen. **Repro steps:** 1. Open app in portrait 1. Open Recents 1. Select "split screen" 1. Press...
**Description:** https://github.com/user-attachments/assets/aba1672c-4bad-412f-9b4d-0b69870ec653 **Source code:** ```java // ... View anchorView = view.findViewById(R.id.anchor_view); ValueAnimator animation = ValueAnimator.ofInt(100, -400); animation.setDuration(3000); animation.setRepeatMode(Animation.REVERSE); animation.setRepeatCount(Animation.INFINITE); animation.addUpdateListener(updatedAnimation -> { ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) anchorView.getLayoutParams(); params.setMargins(0, 0, 0,...
Feature request to add `SideSheetDialogFragment` (by analogy with [`BottomSheetDialogFragment`](https://github.com/material-components/material-components-android/blob/8f5a04c62b23aee01fa68aae8b467d7eb7c5e6ed/lib/java/com/google/android/material/bottomsheet/BottomSheetDialogFragment.java)).
**Description:** I am setting `android:windowTranslucentStatus` to true to achieve a transparent status bar to blend with the **ImageView** of a **CollapsingToolbar** when expanded and it follows `android:statusBarColor` when collapsed in...
**Description:** We're using the com.google.android.material.progressindicator.LinearProgressIndicator component, and while calling the show() function and having the progress indicator setting indeterminate to true, it seems that only the default track color appears...
It would be convenient to do something similar to this https://github.com/material-components/material-components-android/issues/1688 (MaterialDatePicker - Make picker not final) but for MaterialTimePicker