FormBottomSheet
fun FormBottomSheet(visible: Boolean, title: String, onDismiss: () -> Unit, confirmLabel: String, onConfirm: () -> Unit, confirmEnabled: Boolean = true, content: @Composable ColumnScope.() -> Unit)
Modal bottom sheet presenting a titled form with confirm/close actions.
Renders nothing when visible is false.
Parameters
confirmEnabled
Enables/disables the confirm button.
content
The form body laid out in a column.