Package-level declarations

Functions

Link copied to clipboard
fun DialogBase(state: UseCaseState = rememberUseCaseState(true), properties: DialogProperties = DialogProperties(), onDialogClick: () -> Unit? = null, content: @Composable () -> Unit)

Base component for a dialog.

Link copied to clipboard
fun FrameBase(header: Header? = null, config: BaseConfigs? = null, horizontalContentPadding: PaddingValues = BaseValues.CONTENT_DEFAULT_PADDING, layout: @Composable ColumnScope.(LibOrientation) -> Unit, layoutHorizontalAlignment: Alignment.Horizontal = Alignment.Start, layoutLandscape: @Composable RowScope.() -> Unit? = null, layoutLandscapeVerticalAlignment: Alignment.Vertical = Alignment.CenterVertically, buttonsVisible: Boolean = true, buttons: @Composable ColumnScope.(LibOrientation) -> Unit? = null)

Base component for the content structure of a dialog.

Link copied to clipboard
fun PopupBase(state: UseCaseState = rememberUseCaseState(true), alignment: Alignment = Alignment.TopStart, offset: IntOffset = IntOffset(0, 0), properties: PopupProperties = PopupProperties(), content: @Composable () -> Unit)

Base component for a popup.