blob: 3470014ae03060cb1d1d51bc0efa2e5ca962f3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:type="linear"
android:angle="270"
android:startColor="@color/salmon"
android:endColor="#ffdbd0"/>
<stroke android:width="3dp" android:color="#B1BCBE"/>
<corners
android:radius="10dp"/>
</shape>
|