是否可以在 sheetContent (JetpackCompose) 中实现嵌套的 ModalBottomSheetLayout?

问题描述 投票:0回答:1

我正在实施模态底页对话框,我不想关闭之前打开的对话框,该对话框在我不关闭之前应该可见。应该打开 (N) 没有时间嵌套 ModalBottomSheetLayout

ModalBottomSheetLayout(sheetState = bottomState,
        scrimColor = Color.Transparent,
        sheetElevation = 4.dp,
        sheetShape = RoundedCornerShape(topStart = 12.dp, topEnd = 12.dp),
        sheetContent = { 
             Screen1()
        }{
           MainScreen()
        })

我想要多个对话框而不关闭前一个。

android android-studio kotlin android-jetpack-compose android-jetpack
1个回答
0
投票

你可以使用这个很棒的库 -> https://github.com/dokar3/sheets

它肯定会帮助您实现您的目标,因为它使用看起来像底页的对话框窗口。它可以在另一个上显示多个 bottomsheets 而不会折叠较早的那些。

© www.soinside.com 2019 - 2024. All rights reserved.