Add first settings UI for nav button configuration

This commit is contained in:
ajp_anton
2026-04-23 00:17:45 +00:00
parent cade5e360e
commit a3e6855745
17 changed files with 738 additions and 2 deletions
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="22dp" />
<solid android:color="@color/settings_card_fill" />
<stroke
android:width="1dp"
android:color="@color/settings_card_stroke" />
</shape>
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="270"
android:endColor="@color/settings_window_gradient_end"
android:startColor="@color/settings_window_gradient_start" />
</shape>
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="12dp" />
<solid android:color="@color/settings_spinner_fill" />
<stroke
android:width="1dp"
android:color="@color/settings_spinner_stroke" />
</shape>
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="14dp" />
<solid android:color="@color/settings_spinner_popup_fill" />
<stroke
android:width="1dp"
android:color="@color/settings_spinner_popup_stroke" />
</shape>
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/settings_test_overlay" />
</shape>