我在寻找关闭这种“跳跃”的可能性。
https://www.veed.io/view/0f7585b4-529f-4700-8dc2-15788164fa44
我在1.4.0以下的Compose版本中没有看到它。我的代码:
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
val scope = rememberCoroutineScope()
val sheetState = rememberModalBottomSheetState(ModalBottomSheetValue.Hidden)
ModalBottomSheetLayout(
sheetState = sheetState,
sheetContent = {
Text(
modifier = Modifier
.fillMaxWidth()
.height(200.dp),
text = "CONTENT"
)
}
) {
Button(onClick = { scope.launch { sheetState.show() } }) {
Text(text = "MODAL")
}
}
}
}
}
字符串
我在寻找关闭这个“跳跃功能”的可能性。
PS.看起来已经有一个问题了https://issuetracker.google.com/issues/285847707,但也许有人有一个变通办法?
1条答案
按热度按时间tuwxkamq1#
在sheetContent中尝试使用
Modifier.nestedScroll
的代码,不知道Google需要多长时间才能解决这个问题,所以我必须自己解决,但是这没有任何边缘效果,滚动到边缘时似乎不是很好。字符串