fix cardView shadow clipping (#188)

* fix cardView shadow clipping

* decrease margin above cardView
This commit is contained in:
Luke Wass 2025-05-26 06:26:13 -05:00 committed by GitHub
parent 23c5973501
commit d33f250a56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,6 @@
android:id="@+id/list_apps_row_container" android:id="@+id/list_apps_row_container"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="15sp"
android:layout_marginHorizontal="30sp"> android:layout_marginHorizontal="30sp">
<androidx.cardview.widget.CardView <androidx.cardview.widget.CardView
@ -15,6 +14,7 @@
app:cardBackgroundColor="?cardBackgroundColor" app:cardBackgroundColor="?cardBackgroundColor"
app:cardElevation="8dp" app:cardElevation="8dp"
app:cardCornerRadius="12dp" app:cardCornerRadius="12dp"
app:cardUseCompatPadding="true"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"