13 lines
429 B
XML
13 lines
429 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<solid android:color="#282931" />
|
|
<corners
|
|
android:bottomLeftRadius="12dp"
|
|
android:bottomRightRadius="12dp"
|
|
android:topLeftRadius="12dp"
|
|
android:topRightRadius="12dp" />
|
|
<stroke
|
|
android:width="2dp"
|
|
android:color="#34363E" />
|
|
</shape> |