what-the-bank/resources/res/drawable/bg_button_debit_card_outlin...

31 lines
910 B
XML
Raw Normal View History

2024-07-27 18:17:47 +07:00
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item state_enabled="false">
<shape shape="rectangle">
<solid color="@android:color/transparent"/>
<stroke
width="1dp"
color="#c9c6cd"/>
<corners radius="4dp"/>
</shape>
</item>
<item state_selected="false">
<shape shape="rectangle">
<solid color="@android:color/transparent"/>
<stroke
width="1dp"
color="#c9c6cd"/>
<corners radius="4dp"/>
</shape>
</item>
<item>
<shape shape="rectangle">
<solid color="@android:color/transparent"/>
<stroke
width="1dp"
color="#7631c1"/>
<corners radius="4dp"/>
</shape>
</item>
</selector>