BottomSheetShell

fun BottomSheetShell(content: @Composable () -> Unit?, title: String? = null, subtitle: String? = null, description: String? = null, searchQuery: String? = null, showSectionDivider: Boolean = true, contentScrollState: ScrollableState = rememberScrollState(), icon: @Composable () -> Unit? = null, buttonBlock: @Composable () -> Unit? = null, modifier: Modifier = Modifier, headerTextAlignment: TextAlign = TextAlign.Center, scrollableContainerMinHeight: Dp = Spacing0, scrollableContainerMaxHeight: Dp = InternalSizeValues.Size386, onSearchQueryChanged: (String) -> Unit? = null, onSearch: (String) -> Unit? = null, onDismiss: () -> Unit)

DHIS2 BottomSheetShell. Wraps compose · ModalBottomSheet. desktop version to be implemented

Need to override searchQuery, onSearchQueryChanged&onSearch in order to show the search bar. (TODO: We can add lint check for this)

Parameters

title

: title to be shown.

subtitle

: subTitle to be shown.

description

: PopUp description.

searchQuery

: Search query to be displayed in the search bar.

showSectionDivider

: whether to show the divider or not.

icon

: the icon to be shown.

buttonBlock

: Space for the lower buttons.

content

: to be shown under the header.

contentScrollState

: Pass custom scroll state when content is scrollable. For example, pass configure it when using LazyColumn to Modifier.verticalScroll for content.

onSearchQueryChanged

: Callback when search query is changed.

onSearch

: Callback when search action is triggered.

onDismiss

: gives access to the onDismiss event.

modifier

allows a modifier to be passed externally.

headerTextAlignment

Alignment for header text.

scrollableContainerMinHeight

: Min size for scrollable content.

scrollableContainerMaxHeight

: Max size for scrollable content.