mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
20 lines
416 B
Swift
20 lines
416 B
Swift
import SwiftUI
|
|
|
|
struct CoverSectionRowView<Content: View>: View {
|
|
let label: String?
|
|
let controlView: Content
|
|
|
|
init(_ label: String? = nil, @ViewBuilder controlView: @escaping () -> Content) {
|
|
self.label = label
|
|
self.controlView = controlView()
|
|
}
|
|
|
|
var body: some View {
|
|
HStack {
|
|
Text(label ?? "")
|
|
Spacer()
|
|
controlView
|
|
}
|
|
}
|
|
}
|