-
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/#96] 여행 생성 뷰 / 서버 통신 구현 #108
Conversation
…into feat/#96-enter-preference
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.
굿 진짜 수고 많았어요~~~~~~~~~~~👍👍👍👍👍👍👍👍👍👍👍🎅🎅🎅🎅🎅🎅👁️👁️
private fun Request.newAuthBuilder() = | ||
this.newBuilder().addHeader(AUTHORIZATION, "$BEARER ${dataStore.accessToken}") |
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.
컨s 부탁tv해욥
val startMonth = String.format(TWO_DIGIT_FORMAT, intent.getIntExtra(START_MONTH, 0)) | ||
val startDay = String.format(TWO_DIGIT_FORMAT, intent.getIntExtra(START_DAY, 0)) | ||
val endYear = intent.getIntExtra(END_YEAR, 0) | ||
val endMonth = intent.getIntExtra(END_MONTH, 0) | ||
val endDay = intent.getIntExtra(END_DAY, 0) | ||
val endMonth = String.format(TWO_DIGIT_FORMAT, intent.getIntExtra(END_MONTH, 0)) | ||
val endDay = String.format(TWO_DIGIT_FORMAT, intent.getIntExtra(END_DAY, 0)) |
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.
유비니 열시미 했어요~ LGTM
Intent(this, CreateTripActivity::class.java).apply { | ||
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.
이동하는 부분도 함수로 빼면 좋을 것 같아요~
⛳️ Work Description
📸 Screenshot
Screen_Recording_20240115_011501_doorip.mp4
📢 To Reviewers