Skip to content

Commit

Permalink
Build79
Browse files Browse the repository at this point in the history
 - Release
  • Loading branch information
Hamza417 committed Jun 24, 2023
1 parent 7e0509b commit ba982c0
Showing 1 changed file with 90 additions and 0 deletions.
90 changes: 90 additions & 0 deletions app/src/main/res/layout/dialog_purchase.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
android:clipToPadding="false">

<app.simple.inure.decorations.corners.DynamicCornerLinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/dialog_padding"
android:orientation="vertical"
android:padding="@dimen/dialog_padding">

<app.simple.inure.decorations.ripple.DynamicRippleTextView
android:id="@+id/play_store"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawablePadding="@dimen/popup_padding"
android:gravity="center_vertical"
android:padding="@dimen/dialog_padding"
android:text="@string/play_store"
android:textSize="@dimen/info_text_small"
app:appFontStyle="bold"
app:drawableEndCompat="@drawable/ic_open_in_new_tiny"
app:drawableTintStyle="accent"
app:textColorStyle="primary" />

<app.simple.inure.decorations.ripple.DynamicRippleTextView
android:id="@+id/gumroad"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/popup_item_gap_length"
android:drawablePadding="@dimen/popup_padding"
android:gravity="center_vertical"
android:padding="@dimen/dialog_padding"
android:text="@string/gumroad"
android:textSize="@dimen/info_text_small"
app:appFontStyle="bold"
app:drawableEndCompat="@drawable/ic_open_in_new_tiny"
app:drawableTintStyle="accent"
app:textColorStyle="primary" />

<app.simple.inure.decorations.ripple.DynamicRippleTextView
android:id="@+id/github"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/popup_item_gap_length"
android:drawablePadding="@dimen/popup_padding"
android:gravity="center_vertical"
android:padding="@dimen/dialog_padding"
android:text="@string/github"
android:textSize="@dimen/info_text_small"
app:appFontStyle="bold"
app:drawableEndCompat="@drawable/ic_open_in_new_tiny"
app:drawableTintStyle="accent"
app:textColorStyle="primary" />

<app.simple.inure.decorations.ripple.DynamicRippleTextView
android:id="@+id/kofi"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/popup_item_gap_length"
android:drawablePadding="@dimen/popup_padding"
android:gravity="center_vertical"
android:padding="@dimen/dialog_padding"
android:text="@string/kofi"
android:textSize="@dimen/info_text_small"
app:appFontStyle="bold"
app:drawableEndCompat="@drawable/ic_open_in_new_tiny"
app:drawableTintStyle="accent"
app:textColorStyle="primary" />

<app.simple.inure.decorations.ripple.DynamicRippleTextView
android:id="@+id/close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|center_vertical"
android:layout_marginTop="@dimen/popup_item_gap_length"
android:gravity="center"
android:padding="@dimen/dialog_padding"
android:text="@string/close"
android:textSize="@dimen/info_text_small"
app:appFontStyle="bold"
app:textColorStyle="secondary" />

</app.simple.inure.decorations.corners.DynamicCornerLinearLayout>

</FrameLayout>

0 comments on commit ba982c0

Please sign in to comment.