13 lines
332 B
XML
13 lines
332 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- Background Color -->
|
|
<solid android:color="#FA6F65" />
|
|
|
|
<!-- Border Color -->
|
|
<stroke android:width="1dp" android:color="#FFF" />
|
|
|
|
<!-- Round Corners -->
|
|
<corners android:radius="3dp" />
|
|
|
|
</shape> |