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

[UI/YAF-117] 설정 UI Component를 구현합니다. #100

Merged
merged 8 commits into from
Feb 8, 2025

Conversation

MoonsuKang
Copy link
Member

Related issue 🛠

closed #99

어떤 변경사항이 있었나요?

  • 🐞 BugFix Something isn't working
  • 🎨 Design Markup & styling
  • 📃 Docs Documentation writing and editing (README.md, etc.)
  • [�x] ✨ Feature Feature
  • 🔨 Refactor Code refactoring
  • ⚙️ Setting Development environment setup
  • ✅ Test Test related (Junit, etc.)

CheckPoint ✅

PR이 다음 요구 사항을 충족하는지 확인하세요.

  • PR 컨벤션에 맞게 작성했습니다. (필수)
  • merge할 브랜치의 위치를 확인해 주세요(main❌/develop⭕) (필수)
  • Approve된 PR은 assigner가 머지하고, 수정 요청이 온 경우 수정 후 다시 push를 합니다. (필수)
  • BugFix의 경우, 버그의 원인을 파악하였습니다. (선택)

Work Description ✏️

  • 작업 내용
  • mypage module 삭제
  • setting module 생성
image

Uncompleted Tasks 😅

  • Task1

To Reviewers 📢

@MoonsuKang MoonsuKang added 📱 UI 사용자 인터페이스 관련 작업 👊 문수문수문수문수문수 labels Feb 8, 2025
@MoonsuKang MoonsuKang requested a review from DongChyeon February 8, 2025 15:47
@MoonsuKang MoonsuKang self-assigned this Feb 8, 2025
Comment on lines 62 to 80
Row(
verticalAlignment = Alignment.CenterVertically,
) {
Text(
text = actionTitle ?: "",
style = OrbitTheme.typography.body1Medium,
color = if (isPressed) OrbitTheme.colors.main else OrbitTheme.colors.gray_500, // ✅ Press 상태일 때만 색상 변경
modifier = Modifier
.padding(horizontal = 8.dp, vertical = 4.dp)
.clickable(
interactionSource = interactionSource,
indication = null,
onClick = { /* TODO: 클릭 이벤트 */ },
),
)
Spacer(modifier = Modifier.width(20.dp))
}
}
},
Copy link
Member

Choose a reason for hiding this comment

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

[p4]
Spacer(modifier = Modifier.width(20.dp)) 보다
Row(modifier = Modifier.padding(end = 20.dp)) 가 더 나을수도??

Copy link
Member

Choose a reason for hiding this comment

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

[p5]
궁금한건데 그냥 Modifier 기본값이 아닌 Modifier.wrapContentWidth()를 사용할 때의 이점이 뭔가요?

Copy link
Member Author

Choose a reason for hiding this comment

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

XML에 뇌가 절여져서... 버릇이 됐습니다..

Copy link
Member

Choose a reason for hiding this comment

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

띠용... 안써도 결과 똑같을걸요

Copy link
Member

@DongChyeon DongChyeon left a comment

Choose a reason for hiding this comment

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

고생하심

@MoonsuKang MoonsuKang merged commit 0f8906b into develop Feb 8, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
👊 문수문수문수문수문수 📱 UI 사용자 인터페이스 관련 작업
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[UI] 설정 UI Component를 구현합니다.
2 participants