Added DangerousButtton (red button style)

This commit is contained in:
2020-06-30 06:00:25 -05:00
parent 568bebfb6d
commit 2a64811947
9 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:top="@dimen/button_margin_top"
android:bottom="@dimen/button_margin_bottom"
android:left="@dimen/button_margin_left"
android:right="@dimen/button_margin_right">
<shape android:shape="rectangle">
<solid android:color="@color/buttonDangerHover" />
<corners android:radius="0dp" />
<padding
android:top="@dimen/button_padding_top"
android:bottom="@dimen/button_padding_bottom"
android:left="@dimen/button_padding_left"
android:right="@dimen/button_padding_right" />
</shape>
</item>
</layer-list>