diff --git a/feature/src/main/java/com/terning/feature/search/search/SearchRoute.kt b/feature/src/main/java/com/terning/feature/search/search/SearchRoute.kt index 6756b9ae9..1088e226c 100644 --- a/feature/src/main/java/com/terning/feature/search/search/SearchRoute.kt +++ b/feature/src/main/java/com/terning/feature/search/search/SearchRoute.kt @@ -7,7 +7,6 @@ import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding import androidx.compose.foundation.lazy.LazyColumn -import androidx.compose.material3.HorizontalDivider import androidx.compose.material3.Text import androidx.compose.runtime.Composable import androidx.compose.runtime.LaunchedEffect @@ -22,7 +21,6 @@ import androidx.lifecycle.flowWithLifecycle import com.terning.core.designsystem.component.image.TerningImage import com.terning.core.designsystem.component.textfield.SearchTextField import com.terning.core.designsystem.theme.Black -import com.terning.core.designsystem.theme.Grey100 import com.terning.core.designsystem.theme.TerningTheme import com.terning.core.extension.noRippleClickable import com.terning.core.state.UiState @@ -128,7 +126,7 @@ fun SearchScreen( item { ImageSlider(images = images) - Spacer(modifier = Modifier.padding(8.dp)) + Spacer(modifier = Modifier.padding(top = 20.dp)) Text( text = stringResource(id = R.string.search_today_popular), @@ -142,11 +140,6 @@ fun SearchScreen( searchScrapsList = searchScrapsList, navigateToIntern = navigateToIntern, ) - HorizontalDivider( - thickness = 4.dp, - modifier = Modifier.padding(vertical = 8.dp), - color = Grey100, - ) SearchInternList( type = InternListType.SCRAP, searchViewsList = searchViewsList, diff --git a/feature/src/main/java/com/terning/feature/search/search/component/SearchInternList.kt b/feature/src/main/java/com/terning/feature/search/search/component/SearchInternList.kt index 5a0099763..8c489336c 100644 --- a/feature/src/main/java/com/terning/feature/search/search/component/SearchInternList.kt +++ b/feature/src/main/java/com/terning/feature/search/search/component/SearchInternList.kt @@ -2,6 +2,7 @@ package com.terning.feature.search.search.component import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.padding import androidx.compose.foundation.lazy.LazyRow import androidx.compose.material3.Text @@ -21,7 +22,9 @@ fun SearchInternList( searchViewsList: List?, navigateToIntern: (Long) -> Unit, ) { - Column(modifier = Modifier.padding(horizontal = 24.dp)) { + Column( + modifier = Modifier.padding(horizontal = 24.dp) + ) { Text( text = stringResource( id = when (type) { @@ -29,12 +32,12 @@ fun SearchInternList( InternListType.SCRAP -> R.string.search_most_scrap_intern } ), - style = TerningTheme.typography.title5, + style = TerningTheme.typography.body3, color = Grey400 ) LazyRow( - modifier = Modifier.padding(vertical = 8.dp), + modifier = Modifier.padding(vertical = 12.dp), horizontalArrangement = Arrangement.spacedBy(12.dp), ) { when (type) { @@ -61,5 +64,6 @@ fun SearchInternList( } } } + Spacer(modifier = Modifier.padding(top = 20.dp)) } } \ No newline at end of file diff --git a/feature/src/main/res/values/strings.xml b/feature/src/main/res/values/strings.xml index 1e6199a72..3327e885b 100644 --- a/feature/src/main/res/values/strings.xml +++ b/feature/src/main/res/values/strings.xml @@ -27,9 +27,9 @@ 관심있는 인턴 공고 키워드를 검색해 보세요 요즘 대학생들에게 인기 있는 공고 - 지금 조회수가 많은 공고들이에요 + 이번 주 가장 많이 조회한 공고예요 공고 이미지 - 지금 스크랩수가 많은 공고들이에요 + 이번 주 가장 많이 스크랩 한 공고예요 검색