-
Notifications
You must be signed in to change notification settings - Fork 0
[Fix] 친구 프로필 중첩 스크롤 오류 수정 #48
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -142,7 +142,7 @@ fun FriendProfileScreen( | |
| ) { | ||
| val currentTabPosition = remember { mutableIntStateOf(0) } | ||
| val dropdownState = remember { mutableStateOf(false) } | ||
| val scrollState = rememberScrollState() | ||
| // val scrollState = rememberScrollState() | ||
|
|
||
| NearFrame(modifier = modifier) { | ||
| Box { | ||
|
|
@@ -154,7 +154,7 @@ fun FriendProfileScreen( | |
| Modifier | ||
| .align(Alignment.TopStart) | ||
| .fillMaxSize() | ||
| .verticalScroll(scrollState) | ||
| // .verticalScroll(scrollState) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 중첩 스크롤 문제를 해결하기 위해
따라서 이 |
||
| .background(NearTheme.colors.WHITE_FFFFFF), | ||
| ) { | ||
| if (recordSuccessDialogState) { | ||
|
|
||
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.
사용하지 않는 코드는 주석 처리하기보다 완전히 삭제하여 코드 가독성을 높이는 것이 좋습니다.