2023-09-04 19:47:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-09-15 00:18:25 +00:00
|
|
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-09-24 13:22:18 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-09-04 19:47:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2024-09-24 13:22:18 +00:00
|
|
|
app:cardCornerRadius="28dp"
|
2023-09-04 19:47:05 +00:00
|
|
|
android:layout_height="match_parent"
|
2024-09-24 13:22:18 +00:00
|
|
|
app:cardBackgroundColor="@color/brand_300">
|
2023-09-04 19:47:05 +00:00
|
|
|
|
2024-09-24 13:22:18 +00:00
|
|
|
<include
|
|
|
|
|
android:id="@+id/content"
|
|
|
|
|
layout="@layout/fragment_subscription_content"
|
2023-09-04 19:47:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2024-09-24 13:22:18 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginTop="24dp" />
|
2023-09-15 00:18:25 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|