22 lines
551 B
XML
22 lines
551 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">
|
|
<gradient
|
|
android:endColor="@color/main_color"
|
|
android:gradientRadius="10dp"
|
|
android:startColor="@color/main_color"
|
|
android:type="linear" />
|
|
</shape>
|
|
</item>
|
|
|
|
<item>
|
|
<bitmap
|
|
android:gravity="center"
|
|
android:src="@mipmap/logo_left" />
|
|
</item>
|
|
|
|
|
|
</layer-list>
|