Last updated 7 months ago
To create a Dialog class, you should inherit it from BottomSheetCompose from the bootstrap package.
BottomSheetCompose
class BottomSheetView: BottomSheetCompose() { @Composable override fun Root() { BottomSheet() } } @Composable fun BottomSheet() { // content of BottomSheet }