-
Notifications
You must be signed in to change notification settings - Fork 0
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/#52] "모임 상세 뷰" UI를 구현합니다. #55
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.
정말 수고 많으셨습니다 !
Box( | ||
modifier = Modifier.roundedBackgroundWithBorder( | ||
cornerRadius = 4.dp, | ||
backgroundColor = GongBaekTheme.colors.gray01 | ||
) | ||
) { | ||
Text( | ||
text = groupIntroduction, | ||
modifier = Modifier.padding(16.dp), | ||
color = GongBaekTheme.colors.gray08, | ||
style = GongBaekTheme.typography.body2.r14 | ||
) | ||
} | ||
} | ||
|
||
item { | ||
Spacer(modifier = Modifier.height(30.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.
[3]: 이 부분을 Box에서부터 아래 Spacer까지 묶어서 item으로 빼는게 좋지않을까요 ?? 코드 가독성 측면에서 더 좋을 것 같아요 !
Text( | ||
text = groupHost.mbti, | ||
color = GongBaekTheme.colors.gray08, | ||
style = GongBaekTheme.typography.caption2.m12 | ||
) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
item { | ||
Spacer(modifier = Modifier.height(10.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.
[3] : 요기동
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 🛠
Work Description ✏️
Screenshot 📸
issue.52group-detail.mp4
Uncompleted Tasks 😅
To Reviewers 📢
기본적인 UI 구현이 끝났습니다. 이제 도메인 레이어 보완과 함께 로직 구현에 들어갈게요~~~~