Skip to content

Commit

Permalink
[MOD/#309] 로직 알맞게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Dec 20, 2024
1 parent 0b4fa70 commit d47d73f
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@ fun HomeFilteringBottomSheet(
)
}

// todo: 아래 변수의 mutableStateOf 값을 각각 "defaultStartYear != null"로 넣어주세요.
var isYearNull by remember { mutableStateOf(false) }
var isMonthNull by remember { mutableStateOf(false) }
var isYearNull by remember { mutableStateOf(defaultStartYear != null) }
var isMonthNull by remember { mutableStateOf(defaultStartMonth != null) }

var isCheckBoxChecked by remember { mutableStateOf(false) }

Expand Down Expand Up @@ -154,7 +153,7 @@ fun HomeFilteringBottomSheet(
.padding(horizontal = 24.dp)
)

//todo: 아래는 임시 체크박스로, 추후 수정 부탁합니다!
//TODO: 아래는 임시 체크박스로, 추후 수정 부탁합니다!
Checkbox(
checked = isCheckBoxChecked,
onCheckedChange = { isChecked ->
Expand Down

0 comments on commit d47d73f

Please sign in to comment.