<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="match_parent"
android:background="@color/black"
android:orientation="vertical"
tools:context=".presentation.payment.PaymentFragment"
tools:ignore="ContentDescription"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="13dp"
android:layout_marginTop="30dp"
android:fontFamily="@font/markpro_heavy"
android:text="@string/payment_title"
android:textColor="@color/white"
android:textSize="24sp"
android:textStyle="bold"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="13dp"
android:layout_marginTop="10dp"
android:fontFamily="@font/markpro_medium"
android:text="@string/payment_subtitle"
android:textColor="@color/gray"
/>
<FrameLayout
android:id="@+id/slidesContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="39dp"
android:layout_marginTop="41dp"
android:layout_marginEnd="44dp"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/ic_im_support_creators"
/>
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="36dp"
android:gravity="center"
android:orientation="horizontal"
>
<ImageView
android:id="@+id/ivFirstSlide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_payment_page_indicator_active"
/>
<ImageView
android:id="@+id/ivSecondSlide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
app:srcCompat="@drawable/ic_payment_page_indicator_inactive"
/>
<ImageView
android:id="@+id/ivThirdSlide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
app:srcCompat="@drawable/ic_payment_page_indicator_inactive"
/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="25dp"
android:layout_marginTop="25dp"
android:layout_marginEnd="16dp"
android:fontFamily="@font/markpro_medium"
android:text="@string/payment_price"
android:textColor="@color/gray"
android:textSize="16sp"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="25dp"
android:background="@drawable/ic_btn_try_subscribe"
android:fontFamily="@font/markpro_heavy"
android:text="@string/payment_btn_try_subs_text"
android:textSize="16sp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="21dp"
android:fontFamily="@font/markpro_medium"
android:text="@string/patment_cancel"
android:textAllCaps="true"
android:textColor="@color/gray"
android:textSize="12sp"
/>
</LinearLayout>