Skip to content

Commit

Permalink
[CHORE/#180] onNextClick() μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Aug 19, 2024
1 parent ae37133 commit 963382c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import kotlinx.coroutines.delay
@Composable
fun StartFilteringScreen(
modifier: Modifier = Modifier,
onNextButtonClick: () -> Unit
onNextClick: () -> Unit
) {
var isVisible by remember { mutableStateOf(false) }

Expand Down Expand Up @@ -82,7 +82,7 @@ fun StartFilteringScreen(
style = TerningTheme.typography.button0,
paddingVertical = 20.dp,
text = R.string.start_filtering_button,
onButtonClick = { onNextButtonClick() },
onButtonClick = { onNextClick() },
)
}
}
Expand All @@ -96,7 +96,7 @@ private const val DELAY: Long = 1000
fun StartFilteringScreenPreview() {
TerningPointTheme {
StartFilteringScreen(
onNextButtonClick = {}
onNextClick = {}
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fun NavGraphBuilder.startFilteringNavGraph(
composable<StartFiltering> {
val args = it.toRoute<StartFiltering>()
StartFilteringScreen(
onNextButtonClick = {
onNextClick = {
navHostController.navigateFilteringOne(args.name)
}
)
Expand Down

0 comments on commit 963382c

Please sign in to comment.