adwaita-swift/Sources/Adwaita/View/ScrollView.swift
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

21 lines
397 B
Swift

//
// ScrollView.swift
// Adwaita
//
// Created by david-swift on 26.09.23.
//
/// A GtkScrolledWindow equivalent.
public typealias ScrollView = ScrolledWindow
extension ScrollView {
/// Initialize a `ScrollView`.
/// - Parameter content: The view content.
public init(@ViewBuilder content: @escaping () -> Body) {
self.init()
self = self.child(content)
}
}