TP-63076 | added skipHalfExpanded as true (#10320)
This commit is contained in:
@@ -94,7 +94,10 @@ fun ComplaintListScreen(
|
||||
|
||||
val scope = rememberCoroutineScope()
|
||||
val bottomSheetState =
|
||||
rememberModalBottomSheetState(initialValue = ModalBottomSheetValue.Hidden)
|
||||
rememberModalBottomSheetState(
|
||||
initialValue = ModalBottomSheetValue.Hidden,
|
||||
skipHalfExpanded = true
|
||||
)
|
||||
|
||||
val openSheet = {
|
||||
scope.launch { bottomSheetState.show() }
|
||||
|
||||
@@ -138,7 +138,8 @@ fun LinkedAccountsScreen(
|
||||
val bottomSheetState =
|
||||
rememberModalBottomSheetState(
|
||||
initialValue = ModalBottomSheetValue.Hidden,
|
||||
confirmValueChange = { bottomSheetStateHolder.bottomSheetStateChange }
|
||||
confirmValueChange = { bottomSheetStateHolder.bottomSheetStateChange },
|
||||
skipHalfExpanded = true
|
||||
)
|
||||
val scope = rememberCoroutineScope()
|
||||
|
||||
|
||||
@@ -224,7 +224,8 @@ fun NaviPayOnboardingScreen(
|
||||
val bottomSheetState =
|
||||
rememberModalBottomSheetState(
|
||||
initialValue = ModalBottomSheetValue.Hidden,
|
||||
confirmValueChange = { bottomSheetStateHolder.bottomSheetStateChange }
|
||||
confirmValueChange = { bottomSheetStateHolder.bottomSheetStateChange },
|
||||
skipHalfExpanded = true
|
||||
)
|
||||
|
||||
LaunchedEffect(key1 = bottomSheetStateHolder.showBottomSheet) {
|
||||
|
||||
Reference in New Issue
Block a user