OrgBottomSheet

fun OrgBottomSheet(orgTreeItems: List<OrgTreeItem>, modifier: Modifier = Modifier, title: String? = null, subtitle: String? = null, description: String? = null, clearAllButtonText: String = provideStringResource("clear_all"), doneButtonText: String = provideStringResource("done"), noResultsFoundText: String = provideStringResource("no_results_found"), icon: @Composable () -> Unit? = null, onSearch: (String) -> Unit? = null, onDismiss: () -> Unit, onItemClick: (uid: String) -> Unit, onItemSelected: (uid: String, checked: Boolean) -> Unit, onClearAll: () -> Unit, onDone: () -> Unit)

DHIS2 OrgBottomSheet component designed to be used with Input Org Unit, wraps DHIS2 BottomSheetShell.

Parameters

orgTreeItems

list of OrgTreeItem with Org tree information

title

: Header.

subtitle

: optional subtitle.

description

: optional description.

clearAllButtonText

: text for clear all button.

doneButtonText

: text for accept button.

noResultsFoundText

: text for no results found.

icon

: optional icon to be shown above the header .

onSearch

: access to the on search event.

onDismiss

: access to the on dismiss event.

onItemSelected

: access to the on item selected event.

onItemClick

: access to onItemClick event.

onClearAll

: access to the on clear all event.

onDone

: access to the on done event.

modifier

width and size of the barcode.