BottomSheets

To create a Dialog class, you should inherit it from BottomSheetCompose from the bootstrap package.


class BottomSheetView: BottomSheetCompose()
{
    @Composable
    override fun Root()
    {
        BottomSheet()
    }
}

@Composable
fun BottomSheet()
{
    // content of BottomSheet
}

Last updated

Was this helpful?