fix(dm): 채팅 플로팅 버튼을 숨긴다

This commit is contained in:
2026-07-12 17:45:19 +09:00
parent 2d8f8cab81
commit c389d1945d
2 changed files with 0 additions and 14 deletions

View File

@@ -59,7 +59,6 @@ class ChatMainFragment : BaseFragment<FragmentV2MainChatBinding>(
setupChatRooms() setupChatRooms()
bindViewModel() bindViewModel()
binding.btnChatFloating.setOnClickListener { }
viewModel.loadFirstPage(initialFilter) viewModel.loadFirstPage(initialFilter)
} }

View File

@@ -50,17 +50,4 @@
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/view_chat_filter_tabs" app:layout_constraintTop_toBottomOf="@id/view_chat_filter_tabs"
tools:text="아직 나눈 대화가 없어요.\n크리에이터와 이야기를 시작해 보세요." /> tools:text="아직 나눈 대화가 없어요.\n크리에이터와 이야기를 시작해 보세요." />
<ImageView
android:id="@+id/btn_chat_floating"
android:layout_width="@dimen/spacing_48"
android:layout_height="@dimen/spacing_48"
android:layout_marginEnd="@dimen/spacing_20"
android:layout_marginBottom="@dimen/spacing_20"
android:background="@drawable/bg_chat_floating_button"
android:contentDescription="@string/screen_chat_floating_button"
android:scaleType="center"
android:src="@drawable/ic_plus_no_bg"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>