Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check.xml « drawable « res « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c6c6b760e1a8fb2dcd938f69ef8c58ab9c4b7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/area">
        <shape android:shape="oval">
            <solid android:color="@color/defaultBrand" />
            <stroke
                android:width="1dp"
                android:color="@android:color/white" />
        </shape>
    </item>
    <item android:drawable="@drawable/ic_check_white_24dp" />
</layer-list>