mirror of
https://github.com/nextcloud/android.git
synced 2024-12-19 07:22:06 +03:00
19 lines
No EOL
439 B
XML
19 lines
No EOL
439 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle" >
|
|
|
|
<corners
|
|
android:radius="10dp"/>
|
|
<padding
|
|
android:left="3dp"
|
|
android:right="3dp"
|
|
android:top="3dp"
|
|
android:bottom="3dp"
|
|
/>
|
|
<gradient
|
|
android:angle="270"
|
|
android:startColor="#9ed218"
|
|
android:endColor="#5c8b1a"
|
|
/>
|
|
|
|
</shape> |