39 lines
885 B
Swift
39 lines
885 B
Swift
//
|
|
// Text.swift
|
|
// Adwaita
|
|
//
|
|
// Created by david-swift on 23.08.23.
|
|
//
|
|
|
|
import Libadwaita
|
|
|
|
/// A text widget.
|
|
public struct Text: Widget {
|
|
|
|
/// The content.
|
|
var text: String
|
|
|
|
/// Initialize a text widget.
|
|
/// - Parameter text: The content.
|
|
public init(_ text: String) {
|
|
self.text = text
|
|
}
|
|
|
|
/// Update the view storage of the text widget.
|
|
/// - Parameters:
|
|
/// - storage: The view storage.
|
|
/// - modifiers: Modify views before being updated.
|
|
public func update(_ storage: ViewStorage, modifiers: [(View) -> View]) {
|
|
if let label = storage.view as? MarkupLabel {
|
|
label.setText(text)
|
|
}
|
|
}
|
|
|
|
/// Get the container of the text widget.
|
|
/// - Returns: The view storage.
|
|
public func container(modifiers: [(View) -> View]) -> ViewStorage {
|
|
.init(MarkupLabel(self.text))
|
|
}
|
|
|
|
}
|