feat: 메인 홈

- 오직 보이스온에서만 UI 추가
This commit is contained in:
2025-07-15 16:08:25 +09:00
parent ccc774da0d
commit af818bda93
7 changed files with 306 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#b2000000" />
<corners
android:bottomRightRadius="16dp"
android:topLeftRadius="16dp" />
</shape>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ef5247" />
<corners
android:bottomRightRadius="16dp"
android:topLeftRadius="16dp" />
</shape>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:type="linear"
android:angle="270"
android:startColor="#0001B1"
android:centerColor="#0001B1"
android:endColor="#3B5FF1"
android:centerY="0.24" />
<corners
android:bottomRightRadius="16dp"
android:topLeftRadius="16dp" />
</shape>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent" />
<corners android:radius="39dp" />
<stroke
android:width="1dp"
android:color="@color/white" />
</shape>