diff options
Diffstat (limited to 'app/src/main/res/drawable/button_clicked.xml')
| -rw-r--r-- | app/src/main/res/drawable/button_clicked.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/button_clicked.xml b/app/src/main/res/drawable/button_clicked.xml new file mode 100644 index 0000000..c39a7e3 --- /dev/null +++ b/app/src/main/res/drawable/button_clicked.xml @@ -0,0 +1,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>
\ No newline at end of file |