123456789101112131415161718 |
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <solid android:color="@color/payeco_bgColor" />
- <stroke
- android:width="3dp"
- android:color="@color/payeco_textColorWhite" />
- <corners android:radius="10dp" />
- <padding
- android:bottom="3dp"
- android:left="3dp"
- android:right="3dp"
- android:top="3dp" />
- </shape>
|