A modal bottom sheet that allows contextual actions for a given message. This is a top level scaffold that is designed to wrap your screen content. This can be utilized in conjunction with MessageList to show contextual actions for the MessageList#onLongPress callback.

val messageSheetState = rememberMessageActionSheetState()
MessageActionSheet(state) {
    // your screen content
}

For a more detailed API definition, check out the API docs here.