22 lines
712 B
XML
22 lines
712 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<corners android:radius="20dp"/>
|
|
<gradient
|
|
android:type="linear"
|
|
android:startColor="#EF51BF"
|
|
android:endColor="#5C63F0"
|
|
android:angle="-90" />
|
|
</shape>
|
|
</item>
|
|
<item android:left="5dp"
|
|
android:right="5dp"
|
|
android:top="5dp"
|
|
android:bottom="5dp">
|
|
<shape android:shape="rectangle">
|
|
<corners android:radius="20dp"/>
|
|
<solid android:color="#5A00C4"/>
|
|
</shape>
|
|
</item>
|
|
</layer-list> |