Skip to content

Instantly share code, notes, and snippets.

@laevandus
Created November 4, 2020 12:01
Show Gist options
  • Save laevandus/d8aff02a001ec80ba383eeb72a0f9aa3 to your computer and use it in GitHub Desktop.
Save laevandus/d8aff02a001ec80ba383eeb72a0f9aa3 to your computer and use it in GitHub Desktop.
struct InputView: View {
let title: String
var placeholder: String = ""
let value: Binding<String>
var body: some View {
VStack {
HStack {
Text(title)
.font(.subheadline)
Spacer()
}
TextField(placeholder, text: value)
.textFieldStyle(RoundedBorderTextFieldStyle())
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment