david-swift d0d7d2b6d3
Some checks are pending
Deploy Docs / publish (push) Waiting to run
SwiftLint / SwiftLint (push) Waiting to run
Use the new wrapModifier for simple modifiers
2026-02-03 00:07:26 +01:00

40 lines
931 B
Swift

//
// HStack.swift
// Adwaita
//
// Created by david-swift on 26.09.23.
//
/// A horizontal GtkBox equivalent.
public struct HStack: SimpleView {
/// The content.
var content: () -> Body
/// The spacing between elements.
var spacing: Int
/// Whether the linked style should be used.
var linked = false
/// The view's body.
public var view: Body {
VStack(horizontal: true, spacing: spacing, content: content)
}
/// Initialize a `HStack`.
/// - Parameters:
/// - spacing: The spacing between elements.
/// - content: The view content.
public init(spacing: Int = 0, @ViewBuilder content: @escaping () -> Body) {
self.content = content
self.spacing = spacing
}
/// Link the children.
public func linked(_ active: Bool = true) -> Self {
var newSelf = self
newSelf.linked = active
return newSelf
}
}