From b607912ce5f8f5cff32f33f6ad04d7ac122796ec Mon Sep 17 00:00:00 2001 From: LEE YOU BIN Date: Fri, 22 Mar 2024 02:57:32 +0900 Subject: [PATCH 1/3] =?UTF-8?q?[FIX/#263]=20=EC=97=A0=ED=8B=B0=EB=B7=B0=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../res/drawable/ic_empty_check_friends.xml | 83 ++++++++++--------- 1 file changed, 43 insertions(+), 40 deletions(-) diff --git a/presentation/src/main/res/drawable/ic_empty_check_friends.xml b/presentation/src/main/res/drawable/ic_empty_check_friends.xml index f915c76c..24f5f634 100644 --- a/presentation/src/main/res/drawable/ic_empty_check_friends.xml +++ b/presentation/src/main/res/drawable/ic_empty_check_friends.xml @@ -1,155 +1,158 @@ + android:viewportHeight="137"> + android:fillType="evenOdd"/> + Date: Fri, 22 Mar 2024 03:10:40 +0900 Subject: [PATCH 2/3] =?UTF-8?q?[FIX/#263]=20=EC=B7=A8=ED=96=A5=20=ED=83=9C?= =?UTF-8?q?=EA=B7=B8=20=EB=9D=BC=EC=9D=B4=ED=8C=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../profile/participant/ParticipantProfileViewModel.kt | 10 +++++----- .../profiletag/changetag/ChangeTagViewModel.kt | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/presentation/src/main/java/com/going/presentation/profile/participant/ParticipantProfileViewModel.kt b/presentation/src/main/java/com/going/presentation/profile/participant/ParticipantProfileViewModel.kt index ee30f872..692755f3 100644 --- a/presentation/src/main/java/com/going/presentation/profile/participant/ParticipantProfileViewModel.kt +++ b/presentation/src/main/java/com/going/presentation/profile/participant/ParticipantProfileViewModel.kt @@ -39,10 +39,10 @@ class ParticipantProfileViewModel @Inject constructor( } fun setPreferenceData(styleA: Int, styleB: Int, styleC: Int, styleD: Int, styleE: Int) = listOf( - ProfilePreferenceData("01", "계획은 어느 정도로 세울까요?", "철저하게", "즉흥으로", styleA), - ProfilePreferenceData("02", "장소 선택의 기준은 무엇인가요?", "관광지", "로컬장소", styleB), - ProfilePreferenceData("03", "어느 식당을 갈까요?", "유명 맛집", "가까운 곳", styleC), - ProfilePreferenceData("04", "기억하고 싶은 순간에!", "사진필수", "눈에 담기", styleD), - ProfilePreferenceData("05", "하루 일정을 어떻게 채우나요?", "알차게", "여유롭게", styleE) + ProfilePreferenceData("01", "계획은 어느 정도로 세울까요?", "즉흥으로", "철저하게", styleA), + ProfilePreferenceData("02", "장소 선택의 기준은 무엇인가요?", "로컬장소", "관광지", styleB), + ProfilePreferenceData("03", "어느 식당을 갈까요?", "가까운 곳", "유명 맛집", styleC), + ProfilePreferenceData("04", "기억하고 싶은 순간에!", "눈에 담기", "사진 필수", styleD), + ProfilePreferenceData("05", "하루 일정을 어떻게 채우나요?", "여유롭게", "알차게", styleE) ) } \ No newline at end of file diff --git a/presentation/src/main/java/com/going/presentation/profile/participant/profiletag/changetag/ChangeTagViewModel.kt b/presentation/src/main/java/com/going/presentation/profile/participant/profiletag/changetag/ChangeTagViewModel.kt index 053bcd43..de4457ae 100644 --- a/presentation/src/main/java/com/going/presentation/profile/participant/profiletag/changetag/ChangeTagViewModel.kt +++ b/presentation/src/main/java/com/going/presentation/profile/participant/profiletag/changetag/ChangeTagViewModel.kt @@ -119,11 +119,11 @@ class ChangeTagViewModel @Inject constructor( fun initPreferenceData(styleA: Int, styleB: Int, styleC: Int, styleD: Int, styleE: Int) = listOf( - ProfilePreferenceData("01", "계획은 어느 정도로 세울까요?", "철저하게", "즉흥으로", styleA), - ProfilePreferenceData("02", "장소 선택의 기준은 무엇인가요?", "관광지", "로컬장소", styleB), - ProfilePreferenceData("03", "어느 식당을 갈까요?", "유명 맛집", "가까운 곳", styleC), - ProfilePreferenceData("04", "기억하고 싶은 순간에!", "사진필수", "눈에 담기", styleD), - ProfilePreferenceData("05", "하루 일정을 어떻게 채우나요?", "알차게", "여유롭게", styleE) + ProfilePreferenceData("01", "계획은 어느 정도로 세울까요?", "즉흥으로", "철저하게", styleA), + ProfilePreferenceData("02", "장소 선택의 기준은 무엇인가요?", "로컬장소", "관광지", styleB), + ProfilePreferenceData("03", "어느 식당을 갈까요?", "가까운 곳", "유명 맛집", styleC), + ProfilePreferenceData("04", "기억하고 싶은 순간에!", "눈에 담기", "사진 필수", styleD), + ProfilePreferenceData("05", "하루 일정을 어떻게 채우나요?", "여유롭게", "알차게", styleE) ) } \ No newline at end of file From 90d06481571d335fe6a4b86799bf012ae36c28e6 Mon Sep 17 00:00:00 2001 From: LEE YOU BIN Date: Fri, 22 Mar 2024 03:26:42 +0900 Subject: [PATCH 3/3] =?UTF-8?q?[FIX/#263]=20=EA=B2=B0=EA=B3=BC=20=ED=85=8D?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=ED=8C=A8=EB=94=A9=20=EA=B0=92=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- presentation/src/main/res/layout/activity_check_friends.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/presentation/src/main/res/layout/activity_check_friends.xml b/presentation/src/main/res/layout/activity_check_friends.xml index c7e87594..cb182340 100644 --- a/presentation/src/main/res/layout/activity_check_friends.xml +++ b/presentation/src/main/res/layout/activity_check_friends.xml @@ -68,6 +68,7 @@ android:layout_marginTop="20dp" android:background="@drawable/shape_rect_6_gray50_fill" android:gravity="center" + android:paddingHorizontal="10dp" android:paddingVertical="14dp" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent"