24 lines
435 B
Swift
24 lines
435 B
Swift
//
|
|
// Spacer.swift
|
|
// MacBackend
|
|
//
|
|
// Created by david-swift on 01.12.2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
/// The spacer widget.
|
|
public struct Spacer: SwiftUIWidget {
|
|
|
|
/// Initialize the spacer.
|
|
public init() { }
|
|
|
|
/// Get the SwiftUI view.
|
|
/// - Parameter properties: The widget data.
|
|
/// - Returns: The SwiftUI view.
|
|
public static func view(properties: Self) -> some SwiftUI.View {
|
|
SwiftUI.Spacer()
|
|
}
|
|
|
|
}
|