-
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
Feature/UI #18
Feature/UI #18
Conversation
) { | ||
LazyVerticalGrid( | ||
modifier = Modifier | ||
.padding( |
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.
contentPadding을 사용하지 않고 Modifier의 padding을 사용한 이유는 무엇인가요?
) { | ||
Icon( | ||
modifier = Modifier.size(32.dp) | ||
.clearAndSetSemantics { }, |
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.
clearAndSetSemantics
는 어떤 의도로 추가했나요?
.clearAndSetSemantics { }, | ||
imageVector = SeeDocsIcon.PDF, | ||
contentDescription = null, | ||
tint = Color.Unspecified |
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.
Color.Unspecified
로 설정하신 이유가 궁금합니다.
|
||
import androidx.lifecycle.ViewModel | ||
import dagger.hilt.android.lifecycle.HiltViewModel | ||
import javax.inject.Inject |
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.
의미없는 코드는 커밋에 포함되지 않도록 하시는게 좋을 것 같아요.
이를 방지하기 위해선 개발 계획을 잘 세우시는게 중요합니다.
@@ -13,6 +18,21 @@ internal fun MainNavHost( | |||
navController = navigator.navController, | |||
startDestination = navigator.startDestination, | |||
) { | |||
exploreNavGraph( | |||
padding = padding, | |||
navigateToPdf = { navigator.navigate(Route.Pdf){null} } |
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.
navigator.navigate(Route.Pdf){null}
코드 정렬 확인 부탁드립니다.
.fillMaxSize() | ||
.background(Theme.colors.bg) | ||
) { | ||
|
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.
구현이 필요한 코드는 TODO 코멘트를 남겨놓는 것도 괜찮은 방법입니다.
Spacer(Modifier.height(32.dp)) | ||
|
||
Text( | ||
text = "북마크", |
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.
앱 내에 필요한 텍스트는 하드코딩보다 strings.xml 사용을 권장드립니다.
Quality Gate passedIssues Measures |
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, 머지하셔도 좋습니다.
다음 PR부터는 PR 코멘트에 대한 답글을 달아주세요.
No description provided.