feat: 8주차 미션_제로#58
Open
jeongkyueun wants to merge 7 commits into
Open
Conversation
sua710
reviewed
May 20, 2026
Comment on lines
+40
to
+52
| @Composable | ||
| fun HomeScreen() { | ||
| val dummyProducts = remember { | ||
| mutableStateListOf( | ||
| Product(1, "Air Jordan XXXVI", "Basketball Shoes", "US$185", R.drawable.img_air_jordan_xxxvi, category = "Basketball Shoes"), | ||
| Product(2, "Nike Air Force 1 '07", "Men's Shoes", "US$115", R.drawable.img_nike_air_force, category = "Men's Shoes"), | ||
| Product(3, "Nike Everyday Plus Cushioned", "Training Socks", "US$20", R.drawable.img_nike_everyday_plus_cushioned, category = "Training Socks") | ||
| ) | ||
| } | ||
|
|
||
| LazyColumn( | ||
| modifier = Modifier.fillMaxSize(), | ||
| contentPadding = PaddingValues(bottom = 16.dp) |
Lemon0610
reviewed
May 20, 2026
|
|
||
| private fun setupComposeView() { | ||
| // Dummy wishlist data | ||
| val dummyWishlist = listOf( |
Collaborator
There was a problem hiding this comment.
더미를 페이지마다 만들지 말고 하나의 리스트로 통합하는 것도 좋을 것 같아요!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 feat: 8주차 미션_제로
기존 XML 기반의 RecyclerView와 Adapter 구조를 Jetpack Compose의 LazyColumn으로 마이그레이션하여 UI 선언형 구조로 개선하고 코드 복잡도를 줄였습니다.
🔗 관련 이슈
Closes #이슈번호
✨ 변경 사항
HomeFragment:
WishlistFragment & PurchaseFragment:
참고 사항: HomeFragment는 XML 레이아웃을 사용하지 않고 onCreateView에서 ComposeView를 생성하여 반환하는 방식으로 전환되어 결합도를 낮췄습니다.
🔍 테스트
📸 스크린샷 (선택)
🚨 추가 이슈