diff --git a/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/NetworkImage.kt b/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/NetworkImage.kt index f2f92f80..70ced9e5 100644 --- a/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/NetworkImage.kt +++ b/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/NetworkImage.kt @@ -29,6 +29,6 @@ fun NetworkImage( contentScale = contentScale, alignment = Alignment.Center, contentDescription = contentDescription, - ) + ), ) } diff --git a/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/SearchTextField.kt b/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/SearchTextField.kt index f3c3fa6d..43ee1c0b 100644 --- a/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/SearchTextField.kt +++ b/core/designsystem/src/main/kotlin/com/unifest/android/core/designsystem/component/SearchTextField.kt @@ -10,6 +10,8 @@ import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.width import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.foundation.text.KeyboardOptions @@ -75,7 +77,7 @@ fun SearchTextField( contentDescription = "Search Icon", modifier = Modifier.clickable { onSearch(searchText.text.toString()) - } + }, ) Spacer(modifier = Modifier.width(width = 15.dp)) } @@ -92,6 +94,10 @@ fun SearchTextFieldPreview() { searchText = TextFieldState(""), searchTextHintRes = R.string.intro_search_text_hint, onSearch = {}, + modifier = Modifier + .height(46.dp) + .fillMaxWidth() + .padding(horizontal = 20.dp), ) } } diff --git a/feature/intro/src/main/kotlin/com/unifest/android/feature/intro/IntroScreen.kt b/feature/intro/src/main/kotlin/com/unifest/android/feature/intro/IntroScreen.kt index b3c7c657..660685cb 100644 --- a/feature/intro/src/main/kotlin/com/unifest/android/feature/intro/IntroScreen.kt +++ b/feature/intro/src/main/kotlin/com/unifest/android/feature/intro/IntroScreen.kt @@ -112,7 +112,7 @@ fun IntroScreen( modifier = Modifier .height(46.dp) .fillMaxWidth() - .padding(horizontal = 20.dp) + .padding(horizontal = 20.dp), ) SelectedSchoolsGrid( selectedSchools = selectedSchools, diff --git a/secrets.properties b/secrets.properties index cdeb57d4..92f5001b 100644 --- a/secrets.properties +++ b/secrets.properties @@ -1,2 +1,3 @@ SERVER_BASE_URL="https://" GOOGLE_MAP_API_KEY="AIzaSyCwCJqPkjgt2099P99zOIrD1ahnvn0Gm38" +NAVER_MAP_CLIENT_ID="3busx71x7q"