summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/drawable/button_clicked.xml
blob: c39a7e30ee54ae9053aad2f876c31b11a85dc6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke
        android:width="5dp"
        android:color="@color/black" />
    <gradient
        android:type="linear"
        android:angle="45"
        android:startColor="@color/purple_200"
        android:endColor="@color/purple_700" />
    <corners android:radius="15dp" />
</shape>