Skip to content

Commit

Permalink
🔥 사용하지 않는 코드 주석 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
yonghanJu committed Dec 18, 2023
1 parent 03c8df3 commit 1a561c0
Showing 1 changed file with 0 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,17 +139,6 @@ fun SearchFriendScreen(
val userList = viewModel.userList.collectAsStateWithLifecycle()

LazyColumn {
// if (lazyPagingItems.loadState.refresh == LoadState.Loading) {
// item {
// Text(
// text = "Waiting for items to load from the backend",
// modifier = Modifier
// .fillMaxWidth()
// .wrapContentWidth(Alignment.CenterHorizontally),
// )
// }
// }

items(count = userList.value.size) { index ->

val item = userList.value[index]
Expand All @@ -169,16 +158,6 @@ fun SearchFriendScreen(
)
Spacer(modifier = Modifier.height(5.dp))
}

// if (lazyPagingItems.loadState.append == LoadState.Loading) {
// item {
// CircularProgressIndicator(
// modifier = Modifier
// .fillMaxWidth()
// .wrapContentWidth(Alignment.CenterHorizontally),
// )
// }
// }
}
}
}
Expand Down

0 comments on commit 1a561c0

Please sign in to comment.