-
Notifications
You must be signed in to change notification settings - Fork 1
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
[BSVR-111/FEAT] 시야 후기 등록 UI 디테일 및 디자인 추가 #25
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.
UI 짜느라 고생했다 민주야~~
추가 궁금한거
- A안
// viewmodel
private val _test = MutableStateFlow("")
val test = _test.asLiveData()
// activity
viewModel.test.observe(this) {}
- B안
// viewmodel
private val _test = MutableStateFlow("")
val test = _test.asStateFlow()
// activity
viewModel.test.asLiveData().observe(this) {}
A안과 B안의 차이점이 뭘까..? 둘 다 똑같은 건가..? 성식이형한테 물어보쟈~ 혹시 민주는 둘의 차이점을 알고있니?
app/src/main/AndroidManifest.xml
Outdated
@@ -55,11 +55,11 @@ | |||
android:screenOrientation="portrait" /> | |||
|
|||
<activity android:name="com.depromeet.presentation.seatReview.ReviewActivity" | |||
android:exported="false" | |||
android:exported="true" |
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.
false 로 바꿔야할듯!
app/src/main/AndroidManifest.xml
Outdated
android:screenOrientation="portrait"/> | ||
|
||
<activity android:name="com.depromeet.presentation.seatReview.ReviewDoneActivity" | ||
android:exported="false" | ||
android:exported="true" | ||
android:screenOrientation="portrait"/> |
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.
22
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.
민주 정말 고생많았어!!!
이제 곧 서버 API연결 시작할텐데 좀만 더 힘내보자!
🙆♂️🙆♂️🙆♂️🙆♂️🙆♂️🙆♂️
android:layout_height="match_parent"> | ||
|
||
<ImageButton | ||
android:id="@+id/btn_add_image" |
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.
우선 관희꺼랑 민주꺼 봤는데 추후에 xml 컨벤션도 맞춰서 한번 리팩토링 해야할거 같아! (물론 나도..)
ArrayAdapter(requireContext(), android.R.layout.simple_spinner_item, blockItems) | ||
adapter.setDropDownViewResource(R.layout.custom_spinner_dropdown_item) |
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.
오 해결했구나!
나도 이거 진짜 궁금했는데, 난 A안으로 진행하긴 했어 ! 결론은 둘 다 돌아가긴 하는데 미리 livedata로 변환해주냐, 나중에 하냐 차이라 코드 스타일 차이아닐까 ?! 이따 물어보쟝 |
[BSVR-108/FEAT] 시야 찾기 UI 3차 구현
…nto feat/#23-seat-review-ui-final # Conflicts: # presentation/src/main/res/values/themes.xml
…nto feat/#23-seat-review-ui-final # Conflicts: # presentation/src/main/res/values/themes.xml # 무제
…nto feat/#23-seat-review-ui-final # Conflicts: # presentation/src/main/res/values/themes.xml
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!!
💻주요 작업 내용
20240715_043938.mp4
🎞리뷰 요청 사항