-
Notifications
You must be signed in to change notification settings - Fork 2
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/#86] 여행 생성 뷰 #91
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
조와요~
binding.btnCreateTripNext.setOnSingleClickListener { | ||
//다음으로 넘어감 | ||
Intent(this, PreferenceTagActivity::class.java).apply { | ||
putExtra(NAME, viewModel.name.value) | ||
putExtra(START, viewModel.startYear.value) | ||
|
||
putExtra(START, viewModel.startMonth.value) | ||
putExtra(START, viewModel.startDay.value) | ||
putExtra(END, viewModel.endYear.value) | ||
putExtra(END, viewModel.endMonth.value) | ||
putExtra(END, viewModel.endDay.value) | ||
startActivity(this) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intent에서 class를 넘겨줄때는 Parcelable을 적용해보는건 어떨까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 구현 다 하고 적용해보겟습뉘다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
빠른 PR 감사합니둥
package com.going.presentation.enter | ||
|
||
class FinishPreferenceActivity { | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 파일이 여행 입장할 때 쓰일 취향 태그 있는 액티비티인가용?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 맞숩니당
⛳️ Work Description