feat(creator): 채널 더보기 메뉴를 추가한다

This commit is contained in:
2026-06-16 17:27:08 +09:00
parent 59545ca82c
commit e8bd31454e
2 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/color_131313"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingHorizontal="24dp"
android:paddingTop="8dp"
android:paddingBottom="8dp">
<View
android:layout_width="36dp"
android:layout_height="4dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="12dp"
android:background="@drawable/bg_bottom_sheet_handle" />
<TextView
android:id="@+id/tv_user_block"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:paddingVertical="16dp"
android:text="@string/menu_user_block"
android:textColor="@color/white"
android:textSize="18sp" />
<TextView
android:id="@+id/tv_user_report"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:paddingVertical="16dp"
android:text="@string/menu_user_report"
android:textColor="@color/white"
android:textSize="18sp" />
<TextView
android:id="@+id/tv_profile_report"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/medium"
android:paddingVertical="16dp"
android:text="@string/menu_profile_report"
android:textColor="@color/white"
android:textSize="18sp" />
</LinearLayout>