Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT/#249] 여행 친구 조회 뷰 / 엠티 뷰 구현 #251

Merged
merged 7 commits into from
Mar 13, 2024

Conversation

leeeyubin
Copy link
Member

⛳️ Work Description

  • 여행자가 혼자일 때 엠티뷰
  • 초대코드 복사 구현
  • 취향 값 라이팅 수정

📸 Screenshot

Screen_Recording_20240313_034207_doorip.mp4

📢 To Reviewers

  • 엠티 뷰까지 구현 완료~~~!!

@leeeyubin leeeyubin added 유빈 ❄ FEAT ✨ 새로운 기능 구현 labels Mar 12, 2024
@leeeyubin leeeyubin added this to the 2차 스프린트 milestone Mar 12, 2024
@leeeyubin leeeyubin self-assigned this Mar 12, 2024
Copy link
Member

@Marchbreeze Marchbreeze left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아니 걍 완벽한디 ...

Copy link
Contributor

@crownjoe crownjoe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿굿 지리네요~ 역시 안드최강오비리드 이유빈

Comment on lines +52 to +59
private fun initLinkInviteBtnListener() {
binding.tvTodoInviteTermsText.setOnSingleClickListener {
val clipboardManager =
requireContext().getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
val clipData = ClipData.newPlainText(CLIP_LABEL, viewModel.inviteCode)
clipboardManager.setPrimaryClip(clipData)
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.S_V2) toast(getString(R.string.finish_trip_tv_copy_code_complete))
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

복사 굿굿~

Copy link
Member

@chattymin chattymin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿~ 이제 너무 잘한다... 그만잘해.

@@ -203,17 +231,22 @@ class CheckFriendsActivity :
override fun onDestroy() {
super.onDestroy()
_adapter = null
if (friendInviteDialog?.isAdded == true) friendInviteDialog?.dismiss()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

?? == ture 라면 뒷부분은 날려도 될듯~~

Suggested change
if (friendInviteDialog?.isAdded == true) friendInviteDialog?.dismiss()
if (friendInviteDialog?.isAdded) friendInviteDialog?.dismiss()

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

현재 FriendInviteEmptyDialog가 nullable인데 == true를 제거하면 if문은 Boolean 타입인데 Boolean? 타입이 들어가서 타입 불일치가 일어나는 것 같습니다,,!

@leeeyubin leeeyubin merged commit 35c3b34 into develop Mar 13, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FEAT ✨ 새로운 기능 구현 유빈 ❄
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEAT] 여행 친구 조회 뷰 / 엠티 뷰 구현
4 participants