Skip to content

Commit

Permalink
[FEATURE] #141 : 처음 로그인 화면에서 BottomSheetContent를 터치해도 포커스를 잃게 하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Feb 27, 2024
1 parent 7cc802e commit 2f9be2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@ import com.wap.wapp.feature.auth.R.string
internal fun SignInContent(
openSignInSheet: () -> Unit,
navigateToNotice: () -> Unit,
modifier: Modifier = Modifier,
) {
val scrollState = rememberScrollState()

Column(
verticalArrangement = Arrangement.Center,
modifier = Modifier
modifier = modifier
.fillMaxSize()
.padding(horizontal = 16.dp)
.verticalScroll(scrollState),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ internal fun SignInScreen(
}
},
navigateToNotice = { navigateToNotice() },
modifier = Modifier.addFocusCleaner(focusManager),
)
}
}

0 comments on commit 2f9be2b

Please sign in to comment.