All Downloads are FREE. Search and download functionalities are using the official Maven repository.

divkit.dsl.Gallery.kt Maven / Gradle / Ivy

Go to download

DivKit is an open source Server-Driven UI (SDUI) framework. SDUI is a an emerging technique that leverage the server to build the user interfaces of their mobile app.

There is a newer version: 30.19.0
Show newest version
@file:Suppress(
    "unused",
    "UNUSED_PARAMETER",
)

package divkit.dsl

import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonValue
import divkit.dsl.annotation.*
import divkit.dsl.core.*
import divkit.dsl.scope.*
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 * Gallery. It contains a horizontal or vertical set of cards that can be scrolled.
 * 
 * Can be created using the method [gallery].
 * 
 * Required parameters: `type`.
 */
@Generated
class Gallery internal constructor(
    @JsonIgnore
    val properties: Properties,
) : Div {
    @JsonAnyGetter
    internal fun getJsonProperties(): Map = properties.mergeWith(
        mapOf("type" to "gallery")
    )

    operator fun plus(additive: Properties): Gallery = Gallery(
        Properties(
            accessibility = additive.accessibility ?: properties.accessibility,
            alignmentHorizontal = additive.alignmentHorizontal ?: properties.alignmentHorizontal,
            alignmentVertical = additive.alignmentVertical ?: properties.alignmentVertical,
            alpha = additive.alpha ?: properties.alpha,
            background = additive.background ?: properties.background,
            border = additive.border ?: properties.border,
            columnCount = additive.columnCount ?: properties.columnCount,
            columnSpan = additive.columnSpan ?: properties.columnSpan,
            crossContentAlignment = additive.crossContentAlignment ?: properties.crossContentAlignment,
            crossSpacing = additive.crossSpacing ?: properties.crossSpacing,
            defaultItem = additive.defaultItem ?: properties.defaultItem,
            disappearActions = additive.disappearActions ?: properties.disappearActions,
            extensions = additive.extensions ?: properties.extensions,
            focus = additive.focus ?: properties.focus,
            height = additive.height ?: properties.height,
            id = additive.id ?: properties.id,
            itemBuilder = additive.itemBuilder ?: properties.itemBuilder,
            itemSpacing = additive.itemSpacing ?: properties.itemSpacing,
            items = additive.items ?: properties.items,
            layoutProvider = additive.layoutProvider ?: properties.layoutProvider,
            margins = additive.margins ?: properties.margins,
            orientation = additive.orientation ?: properties.orientation,
            paddings = additive.paddings ?: properties.paddings,
            restrictParentScroll = additive.restrictParentScroll ?: properties.restrictParentScroll,
            reuseId = additive.reuseId ?: properties.reuseId,
            rowSpan = additive.rowSpan ?: properties.rowSpan,
            scrollMode = additive.scrollMode ?: properties.scrollMode,
            scrollbar = additive.scrollbar ?: properties.scrollbar,
            selectedActions = additive.selectedActions ?: properties.selectedActions,
            tooltips = additive.tooltips ?: properties.tooltips,
            transform = additive.transform ?: properties.transform,
            transitionChange = additive.transitionChange ?: properties.transitionChange,
            transitionIn = additive.transitionIn ?: properties.transitionIn,
            transitionOut = additive.transitionOut ?: properties.transitionOut,
            transitionTriggers = additive.transitionTriggers ?: properties.transitionTriggers,
            variableTriggers = additive.variableTriggers ?: properties.variableTriggers,
            variables = additive.variables ?: properties.variables,
            visibility = additive.visibility ?: properties.visibility,
            visibilityAction = additive.visibilityAction ?: properties.visibilityAction,
            visibilityActions = additive.visibilityActions ?: properties.visibilityActions,
            width = additive.width ?: properties.width,
        )
    )

    class Properties internal constructor(
        /**
         * Accessibility settings.
         */
        val accessibility: Property?,
        /**
         * Horizontal alignment of an element inside the parent element.
         */
        val alignmentHorizontal: Property?,
        /**
         * Vertical alignment of an element inside the parent element.
         */
        val alignmentVertical: Property?,
        /**
         * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
         * Default value: `1.0`.
         */
        val alpha: Property?,
        /**
         * Element background. It can contain multiple layers.
         */
        val background: Property>?,
        /**
         * Element stroke.
         */
        val border: Property?,
        /**
         * Number of columns for block layout.
         */
        val columnCount: Property?,
        /**
         * Merges cells in a column of the [grid](div-grid.md) element.
         */
        val columnSpan: Property?,
        /**
         * Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * Default value: `start`. */ val crossContentAlignment: Property?, /** * Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. */ val crossSpacing: Property?, /** * Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * Default value: `0`. */ val defaultItem: Property?, /** * Actions when an element disappears from the screen. */ val disappearActions: Property>?, /** * Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). */ val extensions: Property>?, /** * Parameters when focusing on an element or losing focus. */ val focus: Property?, /** * Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * Default value: `{"type": "wrap_content"}`. */ val height: Property?, /** * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. */ val id: Property?, /** * Sets collection elements dynamically using `data` and `prototypes`. */ val itemBuilder: Property?, /** * Spacing between elements. * Default value: `8`. */ val itemSpacing: Property?, /** * Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. */ val items: Property>?, /** * Provides element real size values after a layout cycle. */ val layoutProvider: Property?, /** * External margins from the element stroke. */ val margins: Property?, /** * Gallery orientation. * Default value: `horizontal`. */ val orientation: Property?, /** * Internal margins from the element stroke. */ val paddings: Property?, /** * If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * Default value: `false`. */ val restrictParentScroll: Property?, /** * Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) */ val reuseId: Property?, /** * Merges cells in a string of the [grid](div-grid.md) element. */ val rowSpan: Property?, /** * Scroll type: `default` — continuous, `paging` — page-by-page. * Default value: `default`. */ val scrollMode: Property?, /** * Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * Default value: `none`. */ val scrollbar: Property?, /** * List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). */ val selectedActions: Property>?, /** * Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. */ val tooltips: Property>?, /** * Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. */ val transform: Property?, /** * Change animation. It is played when the position or size of an element changes in the new layout. */ val transitionChange: Property?, /** * Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). */ val transitionIn: Property?, /** * Disappearance animation. It is played when an element disappears in the new layout. */ val transitionOut: Property?, /** * Animation starting triggers. Default value: `[state_change, visibility_change]`. */ val transitionTriggers: Property>>?, /** * Triggers for changing variables within an element. */ val variableTriggers: Property>?, /** * Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. */ val variables: Property>?, /** * Element visibility. * Default value: `visible`. */ val visibility: Property?, /** * Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. */ val visibilityAction: Property?, /** * Actions when an element appears on the screen. */ val visibilityActions: Property>?, /** * Element width. * Default value: `{"type": "match_parent"}`. */ val width: Property?, ) { internal fun mergeWith(properties: Map): Map { val result = mutableMapOf() result.putAll(properties) result.tryPutProperty("accessibility", accessibility) result.tryPutProperty("alignment_horizontal", alignmentHorizontal) result.tryPutProperty("alignment_vertical", alignmentVertical) result.tryPutProperty("alpha", alpha) result.tryPutProperty("background", background) result.tryPutProperty("border", border) result.tryPutProperty("column_count", columnCount) result.tryPutProperty("column_span", columnSpan) result.tryPutProperty("cross_content_alignment", crossContentAlignment) result.tryPutProperty("cross_spacing", crossSpacing) result.tryPutProperty("default_item", defaultItem) result.tryPutProperty("disappear_actions", disappearActions) result.tryPutProperty("extensions", extensions) result.tryPutProperty("focus", focus) result.tryPutProperty("height", height) result.tryPutProperty("id", id) result.tryPutProperty("item_builder", itemBuilder) result.tryPutProperty("item_spacing", itemSpacing) result.tryPutProperty("items", items) result.tryPutProperty("layout_provider", layoutProvider) result.tryPutProperty("margins", margins) result.tryPutProperty("orientation", orientation) result.tryPutProperty("paddings", paddings) result.tryPutProperty("restrict_parent_scroll", restrictParentScroll) result.tryPutProperty("reuse_id", reuseId) result.tryPutProperty("row_span", rowSpan) result.tryPutProperty("scroll_mode", scrollMode) result.tryPutProperty("scrollbar", scrollbar) result.tryPutProperty("selected_actions", selectedActions) result.tryPutProperty("tooltips", tooltips) result.tryPutProperty("transform", transform) result.tryPutProperty("transition_change", transitionChange) result.tryPutProperty("transition_in", transitionIn) result.tryPutProperty("transition_out", transitionOut) result.tryPutProperty("transition_triggers", transitionTriggers) result.tryPutProperty("variable_triggers", variableTriggers) result.tryPutProperty("variables", variables) result.tryPutProperty("visibility", visibility) result.tryPutProperty("visibility_action", visibilityAction) result.tryPutProperty("visibility_actions", visibilityActions) result.tryPutProperty("width", width) return result } } /** * Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * * Possible values: [start], [center], [end]. */ @Generated sealed interface CrossContentAlignment /** * Gallery orientation. * * Possible values: [horizontal], [vertical]. */ @Generated sealed interface Orientation /** * Scroll type: `default` — continuous, `paging` — page-by-page. * * Possible values: [paging], [default]. */ @Generated sealed interface ScrollMode /** * Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.
  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * * Possible values: [none], [auto]. */ @Generated sealed interface Scrollbar } /** * @param accessibility Accessibility settings. * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param background Element background. It can contain multiple layers. * @param border Element stroke. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param disappearActions Actions when an element disappears from the screen. * @param extensions Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). * @param focus Parameters when focusing on an element or losing focus. * @param height Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * @param id Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. * @param itemBuilder Sets collection elements dynamically using `data` and `prototypes`. * @param itemSpacing Spacing between elements. * @param items Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. * @param layoutProvider Provides element real size values after a layout cycle. * @param margins External margins from the element stroke. * @param orientation Gallery orientation. * @param paddings Internal margins from the element stroke. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param selectedActions List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). * @param tooltips Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. * @param transform Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. * @param transitionChange Change animation. It is played when the position or size of an element changes in the new layout. * @param transitionIn Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). * @param transitionOut Disappearance animation. It is played when an element disappears in the new layout. * @param transitionTriggers Animation starting triggers. Default value: `[state_change, visibility_change]`. * @param variableTriggers Triggers for changing variables within an element. * @param variables Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. * @param visibility Element visibility. * @param visibilityAction Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. * @param visibilityActions Actions when an element appears on the screen. * @param width Element width. */ @Generated fun DivScope.gallery( `use named arguments`: Guard = Guard.instance, accessibility: Accessibility? = null, alignmentHorizontal: AlignmentHorizontal? = null, alignmentVertical: AlignmentVertical? = null, alpha: Double? = null, background: List? = null, border: Border? = null, columnCount: Int? = null, columnSpan: Int? = null, crossContentAlignment: Gallery.CrossContentAlignment? = null, crossSpacing: Int? = null, defaultItem: Int? = null, disappearActions: List? = null, extensions: List? = null, focus: Focus? = null, height: Size? = null, id: String? = null, itemBuilder: CollectionItemBuilder? = null, itemSpacing: Int? = null, items: List
    ? = null, layoutProvider: LayoutProvider? = null, margins: EdgeInsets? = null, orientation: Gallery.Orientation? = null, paddings: EdgeInsets? = null, restrictParentScroll: Boolean? = null, reuseId: String? = null, rowSpan: Int? = null, scrollMode: Gallery.ScrollMode? = null, scrollbar: Gallery.Scrollbar? = null, selectedActions: List? = null, tooltips: List? = null, transform: Transform? = null, transitionChange: ChangeTransition? = null, transitionIn: AppearanceTransition? = null, transitionOut: AppearanceTransition? = null, transitionTriggers: List>? = null, variableTriggers: List? = null, variables: List? = null, visibility: Visibility? = null, visibilityAction: VisibilityAction? = null, visibilityActions: List? = null, width: Size? = null, ): Gallery = Gallery( Gallery.Properties( accessibility = valueOrNull(accessibility), alignmentHorizontal = valueOrNull(alignmentHorizontal), alignmentVertical = valueOrNull(alignmentVertical), alpha = valueOrNull(alpha), background = valueOrNull(background), border = valueOrNull(border), columnCount = valueOrNull(columnCount), columnSpan = valueOrNull(columnSpan), crossContentAlignment = valueOrNull(crossContentAlignment), crossSpacing = valueOrNull(crossSpacing), defaultItem = valueOrNull(defaultItem), disappearActions = valueOrNull(disappearActions), extensions = valueOrNull(extensions), focus = valueOrNull(focus), height = valueOrNull(height), id = valueOrNull(id), itemBuilder = valueOrNull(itemBuilder), itemSpacing = valueOrNull(itemSpacing), items = valueOrNull(items), layoutProvider = valueOrNull(layoutProvider), margins = valueOrNull(margins), orientation = valueOrNull(orientation), paddings = valueOrNull(paddings), restrictParentScroll = valueOrNull(restrictParentScroll), reuseId = valueOrNull(reuseId), rowSpan = valueOrNull(rowSpan), scrollMode = valueOrNull(scrollMode), scrollbar = valueOrNull(scrollbar), selectedActions = valueOrNull(selectedActions), tooltips = valueOrNull(tooltips), transform = valueOrNull(transform), transitionChange = valueOrNull(transitionChange), transitionIn = valueOrNull(transitionIn), transitionOut = valueOrNull(transitionOut), transitionTriggers = valueOrNull(transitionTriggers), variableTriggers = valueOrNull(variableTriggers), variables = valueOrNull(variables), visibility = valueOrNull(visibility), visibilityAction = valueOrNull(visibilityAction), visibilityActions = valueOrNull(visibilityActions), width = valueOrNull(width), ) ) /** * @param accessibility Accessibility settings. * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param background Element background. It can contain multiple layers. * @param border Element stroke. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param disappearActions Actions when an element disappears from the screen. * @param extensions Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). * @param focus Parameters when focusing on an element or losing focus. * @param height Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * @param id Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. * @param itemBuilder Sets collection elements dynamically using `data` and `prototypes`. * @param itemSpacing Spacing between elements. * @param items Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. * @param layoutProvider Provides element real size values after a layout cycle. * @param margins External margins from the element stroke. * @param orientation Gallery orientation. * @param paddings Internal margins from the element stroke. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param selectedActions List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). * @param tooltips Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. * @param transform Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. * @param transitionChange Change animation. It is played when the position or size of an element changes in the new layout. * @param transitionIn Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). * @param transitionOut Disappearance animation. It is played when an element disappears in the new layout. * @param transitionTriggers Animation starting triggers. Default value: `[state_change, visibility_change]`. * @param variableTriggers Triggers for changing variables within an element. * @param variables Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. * @param visibility Element visibility. * @param visibilityAction Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. * @param visibilityActions Actions when an element appears on the screen. * @param width Element width. */ @Generated fun DivScope.galleryProps( `use named arguments`: Guard = Guard.instance, accessibility: Accessibility? = null, alignmentHorizontal: AlignmentHorizontal? = null, alignmentVertical: AlignmentVertical? = null, alpha: Double? = null, background: List? = null, border: Border? = null, columnCount: Int? = null, columnSpan: Int? = null, crossContentAlignment: Gallery.CrossContentAlignment? = null, crossSpacing: Int? = null, defaultItem: Int? = null, disappearActions: List? = null, extensions: List? = null, focus: Focus? = null, height: Size? = null, id: String? = null, itemBuilder: CollectionItemBuilder? = null, itemSpacing: Int? = null, items: List
    ? = null, layoutProvider: LayoutProvider? = null, margins: EdgeInsets? = null, orientation: Gallery.Orientation? = null, paddings: EdgeInsets? = null, restrictParentScroll: Boolean? = null, reuseId: String? = null, rowSpan: Int? = null, scrollMode: Gallery.ScrollMode? = null, scrollbar: Gallery.Scrollbar? = null, selectedActions: List? = null, tooltips: List? = null, transform: Transform? = null, transitionChange: ChangeTransition? = null, transitionIn: AppearanceTransition? = null, transitionOut: AppearanceTransition? = null, transitionTriggers: List>? = null, variableTriggers: List? = null, variables: List? = null, visibility: Visibility? = null, visibilityAction: VisibilityAction? = null, visibilityActions: List? = null, width: Size? = null, ) = Gallery.Properties( accessibility = valueOrNull(accessibility), alignmentHorizontal = valueOrNull(alignmentHorizontal), alignmentVertical = valueOrNull(alignmentVertical), alpha = valueOrNull(alpha), background = valueOrNull(background), border = valueOrNull(border), columnCount = valueOrNull(columnCount), columnSpan = valueOrNull(columnSpan), crossContentAlignment = valueOrNull(crossContentAlignment), crossSpacing = valueOrNull(crossSpacing), defaultItem = valueOrNull(defaultItem), disappearActions = valueOrNull(disappearActions), extensions = valueOrNull(extensions), focus = valueOrNull(focus), height = valueOrNull(height), id = valueOrNull(id), itemBuilder = valueOrNull(itemBuilder), itemSpacing = valueOrNull(itemSpacing), items = valueOrNull(items), layoutProvider = valueOrNull(layoutProvider), margins = valueOrNull(margins), orientation = valueOrNull(orientation), paddings = valueOrNull(paddings), restrictParentScroll = valueOrNull(restrictParentScroll), reuseId = valueOrNull(reuseId), rowSpan = valueOrNull(rowSpan), scrollMode = valueOrNull(scrollMode), scrollbar = valueOrNull(scrollbar), selectedActions = valueOrNull(selectedActions), tooltips = valueOrNull(tooltips), transform = valueOrNull(transform), transitionChange = valueOrNull(transitionChange), transitionIn = valueOrNull(transitionIn), transitionOut = valueOrNull(transitionOut), transitionTriggers = valueOrNull(transitionTriggers), variableTriggers = valueOrNull(variableTriggers), variables = valueOrNull(variables), visibility = valueOrNull(visibility), visibilityAction = valueOrNull(visibilityAction), visibilityActions = valueOrNull(visibilityActions), width = valueOrNull(width), ) /** * @param accessibility Accessibility settings. * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param background Element background. It can contain multiple layers. * @param border Element stroke. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param disappearActions Actions when an element disappears from the screen. * @param extensions Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). * @param focus Parameters when focusing on an element or losing focus. * @param height Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * @param id Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. * @param itemBuilder Sets collection elements dynamically using `data` and `prototypes`. * @param itemSpacing Spacing between elements. * @param items Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. * @param layoutProvider Provides element real size values after a layout cycle. * @param margins External margins from the element stroke. * @param orientation Gallery orientation. * @param paddings Internal margins from the element stroke. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param selectedActions List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). * @param tooltips Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. * @param transform Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. * @param transitionChange Change animation. It is played when the position or size of an element changes in the new layout. * @param transitionIn Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). * @param transitionOut Disappearance animation. It is played when an element disappears in the new layout. * @param transitionTriggers Animation starting triggers. Default value: `[state_change, visibility_change]`. * @param variableTriggers Triggers for changing variables within an element. * @param variables Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. * @param visibility Element visibility. * @param visibilityAction Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. * @param visibilityActions Actions when an element appears on the screen. * @param width Element width. */ @Generated fun TemplateScope.galleryRefs( `use named arguments`: Guard = Guard.instance, accessibility: ReferenceProperty? = null, alignmentHorizontal: ReferenceProperty? = null, alignmentVertical: ReferenceProperty? = null, alpha: ReferenceProperty? = null, background: ReferenceProperty>? = null, border: ReferenceProperty? = null, columnCount: ReferenceProperty? = null, columnSpan: ReferenceProperty? = null, crossContentAlignment: ReferenceProperty? = null, crossSpacing: ReferenceProperty? = null, defaultItem: ReferenceProperty? = null, disappearActions: ReferenceProperty>? = null, extensions: ReferenceProperty>? = null, focus: ReferenceProperty? = null, height: ReferenceProperty? = null, id: ReferenceProperty? = null, itemBuilder: ReferenceProperty? = null, itemSpacing: ReferenceProperty? = null, items: ReferenceProperty>? = null, layoutProvider: ReferenceProperty? = null, margins: ReferenceProperty? = null, orientation: ReferenceProperty? = null, paddings: ReferenceProperty? = null, restrictParentScroll: ReferenceProperty? = null, reuseId: ReferenceProperty? = null, rowSpan: ReferenceProperty? = null, scrollMode: ReferenceProperty? = null, scrollbar: ReferenceProperty? = null, selectedActions: ReferenceProperty>? = null, tooltips: ReferenceProperty>? = null, transform: ReferenceProperty? = null, transitionChange: ReferenceProperty? = null, transitionIn: ReferenceProperty? = null, transitionOut: ReferenceProperty? = null, transitionTriggers: ReferenceProperty>>? = null, variableTriggers: ReferenceProperty>? = null, variables: ReferenceProperty>? = null, visibility: ReferenceProperty? = null, visibilityAction: ReferenceProperty? = null, visibilityActions: ReferenceProperty>? = null, width: ReferenceProperty? = null, ) = Gallery.Properties( accessibility = accessibility, alignmentHorizontal = alignmentHorizontal, alignmentVertical = alignmentVertical, alpha = alpha, background = background, border = border, columnCount = columnCount, columnSpan = columnSpan, crossContentAlignment = crossContentAlignment, crossSpacing = crossSpacing, defaultItem = defaultItem, disappearActions = disappearActions, extensions = extensions, focus = focus, height = height, id = id, itemBuilder = itemBuilder, itemSpacing = itemSpacing, items = items, layoutProvider = layoutProvider, margins = margins, orientation = orientation, paddings = paddings, restrictParentScroll = restrictParentScroll, reuseId = reuseId, rowSpan = rowSpan, scrollMode = scrollMode, scrollbar = scrollbar, selectedActions = selectedActions, tooltips = tooltips, transform = transform, transitionChange = transitionChange, transitionIn = transitionIn, transitionOut = transitionOut, transitionTriggers = transitionTriggers, variableTriggers = variableTriggers, variables = variables, visibility = visibility, visibilityAction = visibilityAction, visibilityActions = visibilityActions, width = width, ) /** * @param accessibility Accessibility settings. * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param background Element background. It can contain multiple layers. * @param border Element stroke. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param disappearActions Actions when an element disappears from the screen. * @param extensions Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). * @param focus Parameters when focusing on an element or losing focus. * @param height Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * @param id Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. * @param itemBuilder Sets collection elements dynamically using `data` and `prototypes`. * @param itemSpacing Spacing between elements. * @param items Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. * @param layoutProvider Provides element real size values after a layout cycle. * @param margins External margins from the element stroke. * @param orientation Gallery orientation. * @param paddings Internal margins from the element stroke. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param selectedActions List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). * @param tooltips Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. * @param transform Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. * @param transitionChange Change animation. It is played when the position or size of an element changes in the new layout. * @param transitionIn Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). * @param transitionOut Disappearance animation. It is played when an element disappears in the new layout. * @param transitionTriggers Animation starting triggers. Default value: `[state_change, visibility_change]`. * @param variableTriggers Triggers for changing variables within an element. * @param variables Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. * @param visibility Element visibility. * @param visibilityAction Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. * @param visibilityActions Actions when an element appears on the screen. * @param width Element width. */ @Generated fun Gallery.override( `use named arguments`: Guard = Guard.instance, accessibility: Accessibility? = null, alignmentHorizontal: AlignmentHorizontal? = null, alignmentVertical: AlignmentVertical? = null, alpha: Double? = null, background: List? = null, border: Border? = null, columnCount: Int? = null, columnSpan: Int? = null, crossContentAlignment: Gallery.CrossContentAlignment? = null, crossSpacing: Int? = null, defaultItem: Int? = null, disappearActions: List? = null, extensions: List? = null, focus: Focus? = null, height: Size? = null, id: String? = null, itemBuilder: CollectionItemBuilder? = null, itemSpacing: Int? = null, items: List
    ? = null, layoutProvider: LayoutProvider? = null, margins: EdgeInsets? = null, orientation: Gallery.Orientation? = null, paddings: EdgeInsets? = null, restrictParentScroll: Boolean? = null, reuseId: String? = null, rowSpan: Int? = null, scrollMode: Gallery.ScrollMode? = null, scrollbar: Gallery.Scrollbar? = null, selectedActions: List? = null, tooltips: List? = null, transform: Transform? = null, transitionChange: ChangeTransition? = null, transitionIn: AppearanceTransition? = null, transitionOut: AppearanceTransition? = null, transitionTriggers: List>? = null, variableTriggers: List? = null, variables: List? = null, visibility: Visibility? = null, visibilityAction: VisibilityAction? = null, visibilityActions: List? = null, width: Size? = null, ): Gallery = Gallery( Gallery.Properties( accessibility = valueOrNull(accessibility) ?: properties.accessibility, alignmentHorizontal = valueOrNull(alignmentHorizontal) ?: properties.alignmentHorizontal, alignmentVertical = valueOrNull(alignmentVertical) ?: properties.alignmentVertical, alpha = valueOrNull(alpha) ?: properties.alpha, background = valueOrNull(background) ?: properties.background, border = valueOrNull(border) ?: properties.border, columnCount = valueOrNull(columnCount) ?: properties.columnCount, columnSpan = valueOrNull(columnSpan) ?: properties.columnSpan, crossContentAlignment = valueOrNull(crossContentAlignment) ?: properties.crossContentAlignment, crossSpacing = valueOrNull(crossSpacing) ?: properties.crossSpacing, defaultItem = valueOrNull(defaultItem) ?: properties.defaultItem, disappearActions = valueOrNull(disappearActions) ?: properties.disappearActions, extensions = valueOrNull(extensions) ?: properties.extensions, focus = valueOrNull(focus) ?: properties.focus, height = valueOrNull(height) ?: properties.height, id = valueOrNull(id) ?: properties.id, itemBuilder = valueOrNull(itemBuilder) ?: properties.itemBuilder, itemSpacing = valueOrNull(itemSpacing) ?: properties.itemSpacing, items = valueOrNull(items) ?: properties.items, layoutProvider = valueOrNull(layoutProvider) ?: properties.layoutProvider, margins = valueOrNull(margins) ?: properties.margins, orientation = valueOrNull(orientation) ?: properties.orientation, paddings = valueOrNull(paddings) ?: properties.paddings, restrictParentScroll = valueOrNull(restrictParentScroll) ?: properties.restrictParentScroll, reuseId = valueOrNull(reuseId) ?: properties.reuseId, rowSpan = valueOrNull(rowSpan) ?: properties.rowSpan, scrollMode = valueOrNull(scrollMode) ?: properties.scrollMode, scrollbar = valueOrNull(scrollbar) ?: properties.scrollbar, selectedActions = valueOrNull(selectedActions) ?: properties.selectedActions, tooltips = valueOrNull(tooltips) ?: properties.tooltips, transform = valueOrNull(transform) ?: properties.transform, transitionChange = valueOrNull(transitionChange) ?: properties.transitionChange, transitionIn = valueOrNull(transitionIn) ?: properties.transitionIn, transitionOut = valueOrNull(transitionOut) ?: properties.transitionOut, transitionTriggers = valueOrNull(transitionTriggers) ?: properties.transitionTriggers, variableTriggers = valueOrNull(variableTriggers) ?: properties.variableTriggers, variables = valueOrNull(variables) ?: properties.variables, visibility = valueOrNull(visibility) ?: properties.visibility, visibilityAction = valueOrNull(visibilityAction) ?: properties.visibilityAction, visibilityActions = valueOrNull(visibilityActions) ?: properties.visibilityActions, width = valueOrNull(width) ?: properties.width, ) ) /** * @param accessibility Accessibility settings. * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param background Element background. It can contain multiple layers. * @param border Element stroke. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param disappearActions Actions when an element disappears from the screen. * @param extensions Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). * @param focus Parameters when focusing on an element or losing focus. * @param height Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * @param id Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. * @param itemBuilder Sets collection elements dynamically using `data` and `prototypes`. * @param itemSpacing Spacing between elements. * @param items Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. * @param layoutProvider Provides element real size values after a layout cycle. * @param margins External margins from the element stroke. * @param orientation Gallery orientation. * @param paddings Internal margins from the element stroke. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param selectedActions List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). * @param tooltips Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. * @param transform Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. * @param transitionChange Change animation. It is played when the position or size of an element changes in the new layout. * @param transitionIn Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). * @param transitionOut Disappearance animation. It is played when an element disappears in the new layout. * @param transitionTriggers Animation starting triggers. Default value: `[state_change, visibility_change]`. * @param variableTriggers Triggers for changing variables within an element. * @param variables Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. * @param visibility Element visibility. * @param visibilityAction Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. * @param visibilityActions Actions when an element appears on the screen. * @param width Element width. */ @Generated fun Gallery.defer( `use named arguments`: Guard = Guard.instance, accessibility: ReferenceProperty? = null, alignmentHorizontal: ReferenceProperty? = null, alignmentVertical: ReferenceProperty? = null, alpha: ReferenceProperty? = null, background: ReferenceProperty>? = null, border: ReferenceProperty? = null, columnCount: ReferenceProperty? = null, columnSpan: ReferenceProperty? = null, crossContentAlignment: ReferenceProperty? = null, crossSpacing: ReferenceProperty? = null, defaultItem: ReferenceProperty? = null, disappearActions: ReferenceProperty>? = null, extensions: ReferenceProperty>? = null, focus: ReferenceProperty? = null, height: ReferenceProperty? = null, id: ReferenceProperty? = null, itemBuilder: ReferenceProperty? = null, itemSpacing: ReferenceProperty? = null, items: ReferenceProperty>? = null, layoutProvider: ReferenceProperty? = null, margins: ReferenceProperty? = null, orientation: ReferenceProperty? = null, paddings: ReferenceProperty? = null, restrictParentScroll: ReferenceProperty? = null, reuseId: ReferenceProperty? = null, rowSpan: ReferenceProperty? = null, scrollMode: ReferenceProperty? = null, scrollbar: ReferenceProperty? = null, selectedActions: ReferenceProperty>? = null, tooltips: ReferenceProperty>? = null, transform: ReferenceProperty? = null, transitionChange: ReferenceProperty? = null, transitionIn: ReferenceProperty? = null, transitionOut: ReferenceProperty? = null, transitionTriggers: ReferenceProperty>>? = null, variableTriggers: ReferenceProperty>? = null, variables: ReferenceProperty>? = null, visibility: ReferenceProperty? = null, visibilityAction: ReferenceProperty? = null, visibilityActions: ReferenceProperty>? = null, width: ReferenceProperty? = null, ): Gallery = Gallery( Gallery.Properties( accessibility = accessibility ?: properties.accessibility, alignmentHorizontal = alignmentHorizontal ?: properties.alignmentHorizontal, alignmentVertical = alignmentVertical ?: properties.alignmentVertical, alpha = alpha ?: properties.alpha, background = background ?: properties.background, border = border ?: properties.border, columnCount = columnCount ?: properties.columnCount, columnSpan = columnSpan ?: properties.columnSpan, crossContentAlignment = crossContentAlignment ?: properties.crossContentAlignment, crossSpacing = crossSpacing ?: properties.crossSpacing, defaultItem = defaultItem ?: properties.defaultItem, disappearActions = disappearActions ?: properties.disappearActions, extensions = extensions ?: properties.extensions, focus = focus ?: properties.focus, height = height ?: properties.height, id = id ?: properties.id, itemBuilder = itemBuilder ?: properties.itemBuilder, itemSpacing = itemSpacing ?: properties.itemSpacing, items = items ?: properties.items, layoutProvider = layoutProvider ?: properties.layoutProvider, margins = margins ?: properties.margins, orientation = orientation ?: properties.orientation, paddings = paddings ?: properties.paddings, restrictParentScroll = restrictParentScroll ?: properties.restrictParentScroll, reuseId = reuseId ?: properties.reuseId, rowSpan = rowSpan ?: properties.rowSpan, scrollMode = scrollMode ?: properties.scrollMode, scrollbar = scrollbar ?: properties.scrollbar, selectedActions = selectedActions ?: properties.selectedActions, tooltips = tooltips ?: properties.tooltips, transform = transform ?: properties.transform, transitionChange = transitionChange ?: properties.transitionChange, transitionIn = transitionIn ?: properties.transitionIn, transitionOut = transitionOut ?: properties.transitionOut, transitionTriggers = transitionTriggers ?: properties.transitionTriggers, variableTriggers = variableTriggers ?: properties.variableTriggers, variables = variables ?: properties.variables, visibility = visibility ?: properties.visibility, visibilityAction = visibilityAction ?: properties.visibilityAction, visibilityActions = visibilityActions ?: properties.visibilityActions, width = width ?: properties.width, ) ) /** * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param itemSpacing Spacing between elements. * @param orientation Gallery orientation. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.
  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param visibility Element visibility. */ @Generated fun Gallery.evaluate( `use named arguments`: Guard = Guard.instance, alignmentHorizontal: ExpressionProperty? = null, alignmentVertical: ExpressionProperty? = null, alpha: ExpressionProperty? = null, columnCount: ExpressionProperty? = null, columnSpan: ExpressionProperty? = null, crossContentAlignment: ExpressionProperty? = null, crossSpacing: ExpressionProperty? = null, defaultItem: ExpressionProperty? = null, itemSpacing: ExpressionProperty? = null, orientation: ExpressionProperty? = null, restrictParentScroll: ExpressionProperty? = null, reuseId: ExpressionProperty? = null, rowSpan: ExpressionProperty? = null, scrollMode: ExpressionProperty? = null, scrollbar: ExpressionProperty? = null, visibility: ExpressionProperty? = null, ): Gallery = Gallery( Gallery.Properties( accessibility = properties.accessibility, alignmentHorizontal = alignmentHorizontal ?: properties.alignmentHorizontal, alignmentVertical = alignmentVertical ?: properties.alignmentVertical, alpha = alpha ?: properties.alpha, background = properties.background, border = properties.border, columnCount = columnCount ?: properties.columnCount, columnSpan = columnSpan ?: properties.columnSpan, crossContentAlignment = crossContentAlignment ?: properties.crossContentAlignment, crossSpacing = crossSpacing ?: properties.crossSpacing, defaultItem = defaultItem ?: properties.defaultItem, disappearActions = properties.disappearActions, extensions = properties.extensions, focus = properties.focus, height = properties.height, id = properties.id, itemBuilder = properties.itemBuilder, itemSpacing = itemSpacing ?: properties.itemSpacing, items = properties.items, layoutProvider = properties.layoutProvider, margins = properties.margins, orientation = orientation ?: properties.orientation, paddings = properties.paddings, restrictParentScroll = restrictParentScroll ?: properties.restrictParentScroll, reuseId = reuseId ?: properties.reuseId, rowSpan = rowSpan ?: properties.rowSpan, scrollMode = scrollMode ?: properties.scrollMode, scrollbar = scrollbar ?: properties.scrollbar, selectedActions = properties.selectedActions, tooltips = properties.tooltips, transform = properties.transform, transitionChange = properties.transitionChange, transitionIn = properties.transitionIn, transitionOut = properties.transitionOut, transitionTriggers = properties.transitionTriggers, variableTriggers = properties.variableTriggers, variables = properties.variables, visibility = visibility ?: properties.visibility, visibilityAction = properties.visibilityAction, visibilityActions = properties.visibilityActions, width = properties.width, ) ) /** * @param accessibility Accessibility settings. * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param background Element background. It can contain multiple layers. * @param border Element stroke. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param disappearActions Actions when an element disappears from the screen. * @param extensions Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). * @param focus Parameters when focusing on an element or losing focus. * @param height Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * @param id Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. * @param itemBuilder Sets collection elements dynamically using `data` and `prototypes`. * @param itemSpacing Spacing between elements. * @param items Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. * @param layoutProvider Provides element real size values after a layout cycle. * @param margins External margins from the element stroke. * @param orientation Gallery orientation. * @param paddings Internal margins from the element stroke. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param selectedActions List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). * @param tooltips Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. * @param transform Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. * @param transitionChange Change animation. It is played when the position or size of an element changes in the new layout. * @param transitionIn Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). * @param transitionOut Disappearance animation. It is played when an element disappears in the new layout. * @param transitionTriggers Animation starting triggers. Default value: `[state_change, visibility_change]`. * @param variableTriggers Triggers for changing variables within an element. * @param variables Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. * @param visibility Element visibility. * @param visibilityAction Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. * @param visibilityActions Actions when an element appears on the screen. * @param width Element width. */ @Generated fun Component.override( `use named arguments`: Guard = Guard.instance, accessibility: Accessibility? = null, alignmentHorizontal: AlignmentHorizontal? = null, alignmentVertical: AlignmentVertical? = null, alpha: Double? = null, background: List? = null, border: Border? = null, columnCount: Int? = null, columnSpan: Int? = null, crossContentAlignment: Gallery.CrossContentAlignment? = null, crossSpacing: Int? = null, defaultItem: Int? = null, disappearActions: List? = null, extensions: List? = null, focus: Focus? = null, height: Size? = null, id: String? = null, itemBuilder: CollectionItemBuilder? = null, itemSpacing: Int? = null, items: List
    ? = null, layoutProvider: LayoutProvider? = null, margins: EdgeInsets? = null, orientation: Gallery.Orientation? = null, paddings: EdgeInsets? = null, restrictParentScroll: Boolean? = null, reuseId: String? = null, rowSpan: Int? = null, scrollMode: Gallery.ScrollMode? = null, scrollbar: Gallery.Scrollbar? = null, selectedActions: List? = null, tooltips: List? = null, transform: Transform? = null, transitionChange: ChangeTransition? = null, transitionIn: AppearanceTransition? = null, transitionOut: AppearanceTransition? = null, transitionTriggers: List>? = null, variableTriggers: List? = null, variables: List? = null, visibility: Visibility? = null, visibilityAction: VisibilityAction? = null, visibilityActions: List? = null, width: Size? = null, ): Component = Component( template = template, properties = Gallery.Properties( accessibility = valueOrNull(accessibility), alignmentHorizontal = valueOrNull(alignmentHorizontal), alignmentVertical = valueOrNull(alignmentVertical), alpha = valueOrNull(alpha), background = valueOrNull(background), border = valueOrNull(border), columnCount = valueOrNull(columnCount), columnSpan = valueOrNull(columnSpan), crossContentAlignment = valueOrNull(crossContentAlignment), crossSpacing = valueOrNull(crossSpacing), defaultItem = valueOrNull(defaultItem), disappearActions = valueOrNull(disappearActions), extensions = valueOrNull(extensions), focus = valueOrNull(focus), height = valueOrNull(height), id = valueOrNull(id), itemBuilder = valueOrNull(itemBuilder), itemSpacing = valueOrNull(itemSpacing), items = valueOrNull(items), layoutProvider = valueOrNull(layoutProvider), margins = valueOrNull(margins), orientation = valueOrNull(orientation), paddings = valueOrNull(paddings), restrictParentScroll = valueOrNull(restrictParentScroll), reuseId = valueOrNull(reuseId), rowSpan = valueOrNull(rowSpan), scrollMode = valueOrNull(scrollMode), scrollbar = valueOrNull(scrollbar), selectedActions = valueOrNull(selectedActions), tooltips = valueOrNull(tooltips), transform = valueOrNull(transform), transitionChange = valueOrNull(transitionChange), transitionIn = valueOrNull(transitionIn), transitionOut = valueOrNull(transitionOut), transitionTriggers = valueOrNull(transitionTriggers), variableTriggers = valueOrNull(variableTriggers), variables = valueOrNull(variables), visibility = valueOrNull(visibility), visibilityAction = valueOrNull(visibilityAction), visibilityActions = valueOrNull(visibilityActions), width = valueOrNull(width), ).mergeWith(properties) ) /** * @param accessibility Accessibility settings. * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param background Element background. It can contain multiple layers. * @param border Element stroke. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param disappearActions Actions when an element disappears from the screen. * @param extensions Extensions for additional processing of an element. The list of extensions is given in [DivExtension](../../extensions). * @param focus Parameters when focusing on an element or losing focus. * @param height Element height. For Android: if there is text in this or in a child element, specify height in `sp` to scale the element together with the text. To learn more about units of size measurement, see [Layout inside the card](../../layout). * @param id Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier` on iOS. * @param itemBuilder Sets collection elements dynamically using `data` and `prototypes`. * @param itemSpacing Spacing between elements. * @param items Gallery elements. Scrolling to elements can be implemented using:
  • `div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal number `item` inside an element, with the specified `id`;
  • `div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element inside an element, with the specified `id`;
  • `div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous element inside an element, with the specified `id`.
  • The optional `overflow` parameter is used to set navigation when the first or last element is reached:

  • `clamp` — transition will stop at the border element;
  • `ring` — go to the beginning or end, depending on the current element.
  • By default, `clamp`. * @param layoutProvider Provides element real size values after a layout cycle. * @param margins External margins from the element stroke. * @param orientation Gallery orientation. * @param paddings Internal margins from the element stroke. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.

  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param selectedActions List of [actions](div-action.md) to be executed when selecting an element in [pager](div-pager.md). * @param tooltips Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id. * @param transform Applies the passed transformation to the element. Content that doesn't fit into the original view area is cut off. * @param transitionChange Change animation. It is played when the position or size of an element changes in the new layout. * @param transitionIn Appearance animation. It is played when an element with a new ID appears. To learn more about the concept of transitions, see [Animated transitions](../../interaction#animation/transition-animation). * @param transitionOut Disappearance animation. It is played when an element disappears in the new layout. * @param transitionTriggers Animation starting triggers. Default value: `[state_change, visibility_change]`. * @param variableTriggers Triggers for changing variables within an element. * @param variables Definition of variables that can be used within this element. These variables, defined in the array, can only be used inside this element and its children. * @param visibility Element visibility. * @param visibilityAction Tracking visibility of a single element. Not used if the `visibility_actions` parameter is set. * @param visibilityActions Actions when an element appears on the screen. * @param width Element width. */ @Generated fun Component.defer( `use named arguments`: Guard = Guard.instance, accessibility: ReferenceProperty? = null, alignmentHorizontal: ReferenceProperty? = null, alignmentVertical: ReferenceProperty? = null, alpha: ReferenceProperty? = null, background: ReferenceProperty>? = null, border: ReferenceProperty? = null, columnCount: ReferenceProperty? = null, columnSpan: ReferenceProperty? = null, crossContentAlignment: ReferenceProperty? = null, crossSpacing: ReferenceProperty? = null, defaultItem: ReferenceProperty? = null, disappearActions: ReferenceProperty>? = null, extensions: ReferenceProperty>? = null, focus: ReferenceProperty? = null, height: ReferenceProperty? = null, id: ReferenceProperty? = null, itemBuilder: ReferenceProperty? = null, itemSpacing: ReferenceProperty? = null, items: ReferenceProperty>? = null, layoutProvider: ReferenceProperty? = null, margins: ReferenceProperty? = null, orientation: ReferenceProperty? = null, paddings: ReferenceProperty? = null, restrictParentScroll: ReferenceProperty? = null, reuseId: ReferenceProperty? = null, rowSpan: ReferenceProperty? = null, scrollMode: ReferenceProperty? = null, scrollbar: ReferenceProperty? = null, selectedActions: ReferenceProperty>? = null, tooltips: ReferenceProperty>? = null, transform: ReferenceProperty? = null, transitionChange: ReferenceProperty? = null, transitionIn: ReferenceProperty? = null, transitionOut: ReferenceProperty? = null, transitionTriggers: ReferenceProperty>>? = null, variableTriggers: ReferenceProperty>? = null, variables: ReferenceProperty>? = null, visibility: ReferenceProperty? = null, visibilityAction: ReferenceProperty? = null, visibilityActions: ReferenceProperty>? = null, width: ReferenceProperty? = null, ): Component = Component( template = template, properties = Gallery.Properties( accessibility = accessibility, alignmentHorizontal = alignmentHorizontal, alignmentVertical = alignmentVertical, alpha = alpha, background = background, border = border, columnCount = columnCount, columnSpan = columnSpan, crossContentAlignment = crossContentAlignment, crossSpacing = crossSpacing, defaultItem = defaultItem, disappearActions = disappearActions, extensions = extensions, focus = focus, height = height, id = id, itemBuilder = itemBuilder, itemSpacing = itemSpacing, items = items, layoutProvider = layoutProvider, margins = margins, orientation = orientation, paddings = paddings, restrictParentScroll = restrictParentScroll, reuseId = reuseId, rowSpan = rowSpan, scrollMode = scrollMode, scrollbar = scrollbar, selectedActions = selectedActions, tooltips = tooltips, transform = transform, transitionChange = transitionChange, transitionIn = transitionIn, transitionOut = transitionOut, transitionTriggers = transitionTriggers, variableTriggers = variableTriggers, variables = variables, visibility = visibility, visibilityAction = visibilityAction, visibilityActions = visibilityActions, width = width, ).mergeWith(properties) ) /** * @param alignmentHorizontal Horizontal alignment of an element inside the parent element. * @param alignmentVertical Vertical alignment of an element inside the parent element. * @param alpha Sets transparency of the entire element: `0` — completely transparent, `1` — opaque. * @param columnCount Number of columns for block layout. * @param columnSpan Merges cells in a column of the [grid](div-grid.md) element. * @param crossContentAlignment Aligning elements in the direction perpendicular to the scroll direction. In horizontal galleries:
  • `start` — alignment to the top of the card;
  • `center` — to the center;
  • `end` — to the bottom.
  • In vertical galleries:

  • `start` — alignment to the left of the card;
  • `center` — to the center;
  • `end` — to the right.
  • * @param crossSpacing Spacing between elements across the scroll axis. By default, the value set to `item_spacing`. * @param defaultItem Ordinal number of the gallery element to be scrolled to by default. For `scroll_mode`:
  • `default` — the scroll position is set to the beginning of the element, without taking into account `item_spacing`;
  • `paging` — the scroll position is set to the center of the element.
  • * @param itemSpacing Spacing between elements. * @param orientation Gallery orientation. * @param restrictParentScroll If the parameter is enabled, the gallery won't transmit the scroll gesture to the parent element. * @param reuseId Id for the div structure. Used for more optimal reuse of blocks. See [reusing blocks](../../reuse/reuse.md) * @param rowSpan Merges cells in a string of the [grid](div-grid.md) element. * @param scrollMode Scroll type: `default` — continuous, `paging` — page-by-page. * @param scrollbar Scrollbar behavior. Hidden by default. When choosing a gallery size, keep in mind that the scrollbar may have a different height and width depending on the platform and user settings.
  • `none` — the scrollbar is hidden.
  • `auto` — the scrollbar is shown if there isn't enough space and it needs to be displayed on the current platform.
  • * @param visibility Element visibility. */ @Generated fun Component.evaluate( `use named arguments`: Guard = Guard.instance, alignmentHorizontal: ExpressionProperty? = null, alignmentVertical: ExpressionProperty? = null, alpha: ExpressionProperty? = null, columnCount: ExpressionProperty? = null, columnSpan: ExpressionProperty? = null, crossContentAlignment: ExpressionProperty? = null, crossSpacing: ExpressionProperty? = null, defaultItem: ExpressionProperty? = null, itemSpacing: ExpressionProperty? = null, orientation: ExpressionProperty? = null, restrictParentScroll: ExpressionProperty? = null, reuseId: ExpressionProperty? = null, rowSpan: ExpressionProperty? = null, scrollMode: ExpressionProperty? = null, scrollbar: ExpressionProperty? = null, visibility: ExpressionProperty? = null, ): Component = Component( template = template, properties = Gallery.Properties( accessibility = null, alignmentHorizontal = alignmentHorizontal, alignmentVertical = alignmentVertical, alpha = alpha, background = null, border = null, columnCount = columnCount, columnSpan = columnSpan, crossContentAlignment = crossContentAlignment, crossSpacing = crossSpacing, defaultItem = defaultItem, disappearActions = null, extensions = null, focus = null, height = null, id = null, itemBuilder = null, itemSpacing = itemSpacing, items = null, layoutProvider = null, margins = null, orientation = orientation, paddings = null, restrictParentScroll = restrictParentScroll, reuseId = reuseId, rowSpan = rowSpan, scrollMode = scrollMode, scrollbar = scrollbar, selectedActions = null, tooltips = null, transform = null, transitionChange = null, transitionIn = null, transitionOut = null, transitionTriggers = null, variableTriggers = null, variables = null, visibility = visibility, visibilityAction = null, visibilityActions = null, width = null, ).mergeWith(properties) ) @Generated operator fun Component.plus(additive: Gallery.Properties): Component = Component( template = template, properties = additive.mergeWith(properties) ) @Generated fun Gallery.asList() = listOf(this) @Generated fun Gallery.CrossContentAlignment.asList() = listOf(this) @Generated fun Gallery.Orientation.asList() = listOf(this) @Generated fun Gallery.ScrollMode.asList() = listOf(this) @Generated fun Gallery.Scrollbar.asList() = listOf(this)




    © 2015 - 2024 Weber Informatics LLC | Privacy Policy