-
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
테마 마켓 추가 #383
base: develop
Are you sure you want to change the base?
테마 마켓 추가 #383
Conversation
factory = { | ||
webView | ||
}, | ||
modifier = modifier.clipToBounds(), // Compose에서 WebView 사용 시, WebView가 잠깐 동안 다른 Composable을 가리는 WebView 버그 대응(https://issuetracker.google.com/issues/174233728?pli=1#comment5) |
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.
안드 웹뷰가 그려질 때 잠깐 동안 다른 Composable을 가리는 버그가 있음
Modifier.clipToBounds()를 적용해서 웹뷰가 자신의 bound을 넘어서 그려지지 않도록 강제
https://issuetracker.google.com/issues/174233728?pli=1#comment5
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.
오옹... 신기하다
@Composable | ||
fun MarketCustomThemeMoreActionBottomSheet( | ||
onClickDetail: () -> Unit, | ||
onClickDelete: () -> Unit, | ||
modifier: Modifier = Modifier, | ||
) { |
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.
흐음 혹시 이 MarketCustomThemeMoreActionBottomSheet
랑 MyCustomThemeMoreActionBottomSheet
잘 합치는건 별로인가..?
굳이 무리한 합치기이면 필요 없긴 한데 약간 중복 느낌도 있어서
+) 으음 전체적으로 따로따로 있구나 굳이 합칠필요 없는것 같기도
|
||
@Composable | ||
fun ThemeMarketScreen( | ||
accessToken: StateFlow<String>, |
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.
route 에서 collect 하고 값으로 넘기는 거랑 어떤 차이가 있지? (진짜모름)
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~
#382 의 변경사항 위에서 작업했어요