ボトムシートを実装する場合は、ModalBottomSheet
コンポーザブルを使用できます。
content
スロットを使用すると、ColumnScope
を使用してシート コンテンツのコンポーザブルを列内にレイアウトできます。
ModalBottomSheet(onDismissRequest = { /* Executed when the sheet is dismissed */ }) { // Sheet content }
シートのプログラムによる開閉は SheetState
を使用して行います。rememberSheetState
を使用すると、sheetState
パラメータで ModalBottomSheet
に渡す必要がある SheetState
のインスタンスを作成できます。SheetState
を使用すると、show
関数と hide
関数のほか、現在のシートの状態に関連するプロパティにアクセスできます。これらの suspend 関数は CoroutineScope
を必要とし(たとえば rememberCoroutineScope
を使用)、UI イベントに応じて呼び出すことができます。ボトムシートを非表示にするときに、コンポジションから ModalBottomSheet
を削除してください。
val sheetState = rememberModalBottomSheetState() val scope = rememberCoroutineScope() var showBottomSheet by remember { mutableStateOf(false) } Scaffold( floatingActionButton = { ExtendedFloatingActionButton( text = { Text("Show bottom sheet") }, icon = { Icon(Icons.Filled.Add, contentDescription = "") }, onClick = { showBottomSheet = true } ) } ) { contentPadding -> // Screen content if (showBottomSheet) { ModalBottomSheet( onDismissRequest = { showBottomSheet = false }, sheetState = sheetState ) { // Sheet content Button(onClick = { scope.launch { sheetState.hide() }.invokeOnCompletion { if (!sheetState.isVisible) { showBottomSheet = false } } }) { Text("Hide bottom sheet") } } } }