Skip to content

Commit 0eec1b4

Browse files
committed
feat: home_bottom_sheet 배경 설정
1 parent 069bbb7 commit 0eec1b4

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
android:shape="rectangle">
5+
6+
<solid android:color="@android:color/white" />
7+
8+
<corners
9+
android:topLeftRadius="15dp"
10+
android:topRightRadius="15dp" />
11+
</shape>

presentation/src/main/res/drawable/background_search.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
android:shape="rectangle">
55

66
<solid android:color="#FFFFFF" />
7+
78
<corners android:radius="15dp" />
89
</shape>

presentation/src/main/res/layout/home_bottom_sheet.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
<androidx.constraintlayout.widget.ConstraintLayout
77
android:layout_width="match_parent"
88
android:layout_height="match_parent"
9-
android:backgroundTint="#FFFFFF"
9+
android:background="@drawable/background_bottom_sheet"
1010
android:elevation="20dp"
1111
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
1212
app:behavior_peekHeight="100dp"
13-
app:behavior_hideable="false"
14-
style="@style/Widget.Material3.BottomSheet">
13+
app:behavior_hideable="false">
1514

1615
<com.google.android.material.bottomsheet.BottomSheetDragHandleView
1716
android:id="@+id/drag_handle"

0 commit comments

Comments
 (0)