david-swift d8de611510 Add support for auto-generated widget bindings
Additionally fix an update problem occurring with custom views
2024-01-22 21:45:31 +01:00

18 lines
339 B
Swift

//
// ActionRow+.swift
// Adwaita
//
// Created by david-swift on 20.01.24.
//
/// A form content row showing a title and optionally a subtitle and widgets.
extension ActionRow {
/// Initialize an action row.
/// - Parameter title: The row's title.
public init(_ title: String) {
self = self.title(title)
}
}