-
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
[UI/YAF-117] 설정 UI Component를 구현합니다. #100
Conversation
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)) | ||
} | ||
} | ||
}, |
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.
[p4]
Spacer(modifier = Modifier.width(20.dp)) 보다
Row(modifier = Modifier.padding(end = 20.dp)) 가 더 나을수도??
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.
[p5]
궁금한건데 그냥 Modifier 기본값이 아닌 Modifier.wrapContentWidth()를 사용할 때의 이점이 뭔가요?
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에 뇌가 절여져서... 버릇이 됐습니다..
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.
고생하심
Related issue 🛠
closed #99
어떤 변경사항이 있었나요?
CheckPoint ✅
PR이 다음 요구 사항을 충족하는지 확인하세요.
Work Description ✏️
Uncompleted Tasks 😅
To Reviewers 📢