mirror of
https://github.com/cmclark00/mintris.git
synced 2025-05-19 22:15:19 +01:00
15 lines
372 B
XML
15 lines
372 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="#3366FF" />
|
||
|
|
||
|
<corners android:radius="8dp" />
|
||
|
|
||
|
<padding
|
||
|
android:left="16dp"
|
||
|
android:right="16dp"
|
||
|
android:top="8dp"
|
||
|
android:bottom="8dp" />
|
||
|
|
||
|
</shape>
|