redesign subscriptions

This commit is contained in:
2025-07-25 21:50:27 +05:00
parent c2457fe1ec
commit 86d9904b13
2 changed files with 15 additions and 8 deletions

View File

@@ -78,7 +78,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingTop="8dp"
android:paddingTop="16dp"
android:paddingBottom="80dp"
tools:listitem="@layout/item_subscription_detailed" />

View File

@@ -1,14 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:layout_marginVertical="4dp"
android:orientation="vertical"
android:padding="16dp"
android:background="@drawable/card_background"
android:elevation="2dp">
android:layout_marginVertical="8dp"
app:cardCornerRadius="12dp"
app:cardElevation="2dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<!-- Header with service icon and name -->
<LinearLayout
@@ -179,4 +184,6 @@
</LinearLayout>
</LinearLayout>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>