Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
πŸ”€ :: (#154) 검색 κΈ°λŠ₯ μ‚­μ œ
Browse files Browse the repository at this point in the history
πŸ”€ :: (#154) 검색 κΈ°λŠ₯ μ‚­μ œ
  • Loading branch information
Tmdhoon2 authored Dec 5, 2023
2 parents dbad14c + 39806e7 commit 25a8bf8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,6 @@ internal fun Feed(
Header(
title = stringResource(id = R.string.feed),
leadingIcon = null,
trailingIcon = painterResource(id = R.drawable.ic_search),
onTrailingClicked = {},
)
Filter(
expanded = { filterExpanded },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
Expand Down Expand Up @@ -108,8 +109,8 @@ internal fun FeedDetails(
ModalBottomSheetLayout(
sheetContent = {
CommentDialog(
feedViewModel = feedViewModel,
coinViewModel = coinViewModel,
feedViewModel = feedViewModel,
coinViewModel = coinViewModel,
)
},
sheetState = sheetState,
Expand Down Expand Up @@ -152,6 +153,7 @@ internal fun FeedDetails(
.height(200.dp),
model = details.image,
contentDescription = stringResource(id = R.string.feed_details_image),
contentScale = ContentScale.Crop,
)
}
Spacer(modifier = Modifier.height(12.dp))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ internal fun EditProfile(
.clip(CircleShape),
model = state.profile ?: R.drawable.ic_profile_image,
contentDescription = stringResource(id = R.string.my_page_profile_image),
contentScale = ContentScale.Crop,
)
AsyncImage(
modifier = Modifier
Expand Down

0 comments on commit 25a8bf8

Please sign in to comment.