yattee/Apple TV/OptionRowView.swift

20 lines
396 B
Swift
Raw Normal View History

2021-07-07 22:39:18 +00:00
import SwiftUI
struct OptionRowView<Content: View>: View {
let label: String
let controlView: Content
init(_ label: String, @ViewBuilder controlView: @escaping () -> Content) {
self.label = label
self.controlView = controlView()
}
var body: some View {
HStack {
Text(label)
Spacer()
controlView
}
}
}