24 lines
468 B
Swift
24 lines
468 B
Swift
import SwiftUI
|
|
|
|
struct IntegerPropertyView: View {
|
|
|
|
@Binding
|
|
var value: Int
|
|
|
|
let title: String
|
|
|
|
let footer: String
|
|
|
|
var body: some View {
|
|
VStack(alignment: .leading) {
|
|
Text(title)
|
|
.font(.headline)
|
|
IntegerField("", number: $value)
|
|
.textFieldStyle(.roundedBorder)
|
|
Text(footer)
|
|
.foregroundStyle(.secondary)
|
|
.padding(.bottom)
|
|
}
|
|
}
|
|
}
|