⌘K

NativeZStack

A customizable ZStack block for Nativeblocks.

@NativeBlock(
    name: "Native ZStack",
    keyType: "NATIVE_ZSTACK",
    description: "Nativeblocks ZStack block",
    version: 2
)
struct NativeZStack<Content: View>: View 

NativeZStack allows you to stack child views on top of one another with alignment, spacing, padding, and styling options. It supports click events and customizable layout.

Features:

  • Customizable alignment (horizontal and vertical).

  • Configurable padding, frame sizing, and background styling.

  • Shadow and border customization.

Example:

NativeZStack(
    content: { _ in
         Text("Top Left Aligned")
           .padding()
    },
    alignmentHorizontal: .center,
    alignmentVertical: .top,
    backgroundColor: Color.White",
    onClick: { print("ZStack clicked") }
)

Inheritance

View

Slots

content

The content of the ZStack, provided as a slot.

@NativeBlockSlot(description: "The content to display inside the ZStack.")
    var content: (BlockIndex) -> Content

Properties

alignmentHorizontal

The horizontal alignment of the ZStack's content.

@NativeBlockProp(
        description: "The horizontal alignment of the ZStack's content.",
        valuePicker: NativeBlockValuePicker.DROPDOWN,
        valuePickerOptions: [
            NativeBlockValuePickerOption("leading", "leading"),
            NativeBlockValuePickerOption("trailing", "trailing"),
            NativeBlockValuePickerOption("center", "center"),
        ],
        valuePickerGroup: NativeBlockValuePickerPosition("Alignment"),
        defaultValue: "leading"
    )
    var alignmentHorizontal: HorizontalAlignment = .leading

alignmentVertical

The vertical alignment of the ZStack's content.

@NativeBlockProp(
        description: "The vertical alignment of the ZStack's content.",
        valuePicker: NativeBlockValuePicker.DROPDOWN,
        valuePickerOptions: [
            NativeBlockValuePickerOption("top", "top"),
            NativeBlockValuePickerOption("bottom", "bottom"),
            NativeBlockValuePickerOption("center", "center"),
            NativeBlockValuePickerOption("firstTextBaseline", "firstTextBaseline"),
            NativeBlockValuePickerOption("lastTextBaseline", "lastTextBaseline"),
        ],
        valuePickerGroup: NativeBlockValuePickerPosition("Alignment"),
        defaultValue: "top"
    )
    var alignmentVertical: VerticalAlignment = .top

spacing

The spacing between child views in the ZStack.

@NativeBlockProp(
        description: "The spacing between child views in the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Alignment"),
        defaultValue: "0"
    )
    var spacing: CGFloat = 0

paddingTop

The top padding inside the ZStack.

@NativeBlockProp(
        description: "The top padding inside the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Padding"),
        defaultValue: "0"
    )
    var paddingTop: CGFloat = 0

paddingLeading

The leading (left) padding inside the ZStack.

@NativeBlockProp(
        description: "The leading padding inside the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Padding"),
        defaultValue: "0"
    )
    var paddingLeading: CGFloat = 0

paddingBottom

The bottom padding inside the ZStack.

@NativeBlockProp(
        description: "The bottom padding inside the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Padding"),
        defaultValue: "0"
    )
    var paddingBottom: CGFloat = 0

paddingTrailing

The trailing (right) padding inside the ZStack.

@NativeBlockProp(
        description: "The trailing padding inside the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Padding"),
        defaultValue: "0"
    )
    var paddingTrailing: CGFloat = 0

frameWidth

The width of the ZStack's frame.

@NativeBlockProp(
        description: "The width of the ZStack's frame.",
        valuePicker: NativeBlockValuePicker.COMBOBOX_INPUT,
        valuePickerOptions: [
            NativeBlockValuePickerOption("notSet", "notSet"),
            NativeBlockValuePickerOption("infinity", "infinity"),
        ],
        valuePickerGroup: NativeBlockValuePickerPosition("Size"),
        defaultValue: "notSet"
    )
    var frameWidth: String = "notSet"

frameHeight

The height of the ZStack's frame.

@NativeBlockProp(
        description: "The height of the ZStack's frame.",
        valuePicker: NativeBlockValuePicker.COMBOBOX_INPUT,
        valuePickerOptions: [
            NativeBlockValuePickerOption("notSet", "notSet"),
            NativeBlockValuePickerOption("infinity", "infinity"),
        ],
        valuePickerGroup: NativeBlockValuePickerPosition("Size"),
        defaultValue: "notSet"
    )
    var frameHeight: String = "notSet"

backgroundColor

The background color of the ZStack.

@NativeBlockProp(
        description: "The background color of the ZStack.",
        valuePicker: NativeBlockValuePicker.COLOR_PICKER,
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "#00000000"
    )
    var backgroundColor: Color 

cornerRadius

The corner radius of the ZStack.

@NativeBlockProp(
        description: "The corner radius of the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "0"
    )
    var cornerRadius: CGFloat = 0

borderColor

The border color of the ZStack.

@NativeBlockProp(
        description: "The border color of the ZStack.",
        valuePicker: NativeBlockValuePicker.COLOR_PICKER,
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "#00000000"
    )
    var borderColor: Color 

borderWidth

The border width of the ZStack.

@NativeBlockProp(
        description: "The border width of the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "0"
    )
    var borderWidth: CGFloat = 0

shadowColor

The shadow color of the ZStack.

@NativeBlockProp(
        description: "The shadow color of the ZStack.",
        valuePicker: NativeBlockValuePicker.COLOR_PICKER,
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "#00000000"
    )
    var shadowColor: Color 

shadowRadius

The shadow radius of the ZStack.

@NativeBlockProp(
        description: "The shadow radius of the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "0"
    )
    var shadowRadius: CGFloat = 0

shadowX

The horizontal shadow offset of the ZStack.

@NativeBlockProp(
        description: "The horizontal shadow offset of the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "0"
    )
    var shadowX: CGFloat = 0

shadowY

The vertical shadow offset of the ZStack.

@NativeBlockProp(
        description: "The vertical shadow offset of the ZStack.",
        valuePickerGroup: NativeBlockValuePickerPosition("Background"),
        defaultValue: "0"
    )
    var shadowY: CGFloat = 0

Events

onClick

Triggered when the ZStack is clicked.

@NativeBlockEvent(description: "Triggered when the ZStack is clicked.")
    var onClick: (() -> Void)?