Skip to content

Commit

Permalink
[chore] code style check success
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhooon committed Mar 30, 2024
1 parent 8053b51 commit ac248a3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ fun NetworkImage(
contentScale = contentScale,
alignment = Alignment.Center,
contentDescription = contentDescription,
)
),
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -75,7 +77,7 @@ fun SearchTextField(
contentDescription = "Search Icon",
modifier = Modifier.clickable {
onSearch(searchText.text.toString())
}
},
)
Spacer(modifier = Modifier.width(width = 15.dp))
}
Expand All @@ -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),
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fun IntroScreen(
modifier = Modifier
.height(46.dp)
.fillMaxWidth()
.padding(horizontal = 20.dp)
.padding(horizontal = 20.dp),
)
SelectedSchoolsGrid(
selectedSchools = selectedSchools,
Expand Down
1 change: 1 addition & 0 deletions secrets.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
SERVER_BASE_URL="https://"
GOOGLE_MAP_API_KEY="AIzaSyCwCJqPkjgt2099P99zOIrD1ahnvn0Gm38"
NAVER_MAP_CLIENT_ID="3busx71x7q"

0 comments on commit ac248a3

Please sign in to comment.