Skip to content

Commit

Permalink
♻️ :: bottom sheet content 개행 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
ImGaram committed Sep 11, 2023
1 parent 70c66a6 commit 430d77a
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@ import com.dotori.dotori_components.theme.SearchIcon
import com.dotori.dotori_components.theme.Transparent

@Composable
fun BottomSheetContent(onSearchLogic: (searchText: String, grade: String, `class`: String, gender: String) -> Unit) {
fun BottomSheetContent(
onSearchLogic: (
searchText: String,
grade: String,
`class`: String,
gender: String
) -> Unit
) {
var textValue by remember { mutableStateOf("") }

var gradeFilterSelectedState by remember { mutableStateOf("null") }
Expand Down Expand Up @@ -93,9 +100,7 @@ fun BottomSheetHeaderContent(
DotoriTextField(
value = textValue,
placeholder = "이름을 입력해 주세요",
trailingIcon = {
SearchIcon(tint = DotoriTheme.colors.neutral30)
},
trailingIcon = { SearchIcon(tint = DotoriTheme.colors.neutral30) },
onValueChange = {
textValue = it
onTextValueChange(textValue)
Expand Down

0 comments on commit 430d77a

Please sign in to comment.