24 lines
966 B
XML
24 lines
966 B
XML
<?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">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/paypal_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginStart="@dimen/dsl_settings_gutter"
|
|
android:layout_marginEnd="@dimen/dsl_settings_gutter"
|
|
android:insetTop="2dp"
|
|
android:insetBottom="2dp"
|
|
app:cornerRadius="59dp"
|
|
app:icon="@drawable/paypal"
|
|
app:iconGravity="textStart"
|
|
app:iconPadding="0dp"
|
|
app:iconTint="@null"
|
|
app:backgroundTint="#EEEEEE"
|
|
app:strokeColor="@color/paypal_outline"
|
|
app:strokeWidth="1.5dp" />
|
|
</FrameLayout>
|