在 jetpack compose 中设计滑块菜单

Designing a slider menu in jetpack compose

提问人:nikhilbalwani 提问时间:11/13/2023 更新时间:11/13/2023 访问量:60

问:

喷气背包组合中是否有内置功能来设计像这样从底部出现的滑块菜单(我说的是标题为“向 EA 饺子加钱”的菜单)?

enter image description here

将不胜感激。谢谢!

Android Kotlin android-jetpack 喷气背包

评论


答:

2赞 Faruk Karaca 11/13/2023 #1

您可以使用底板。 如何实现它的基本示例。

var showBottomSheet by remember { mutableStateOf(false) }
val sheetState = rememberModalBottomSheetState()

if (showBottomSheet) {
    ModalBottomSheet(
        onDismissRequest = { showBottomSheet = false },
        sheetState = sheetState,
    ) {
        // Your bottom sheet content
    }
}