Files
Magisk/app/src/main/res/drawable/bg_checkbox.xml
T
Viktor De Pasquale 9952387356 Updated layouts to fit new widget that should visually represent a switch
The switch is not actually a switch, but a representation of internal state, the layouts continue to accept touch events as beforehand.
2020-02-11 10:42:05 -08:00

11 lines
390 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="@color/colorOverlay" />
<corners android:radius="20dp" />
<padding
android:bottom="@dimen/l_25"
android:left="@dimen/l_25"
android:right="@dimen/l_25"
android:top="@dimen/l_25" />
</shape>