Skip to content

Instantly share code, notes, and snippets.

@markiv
Last active May 16, 2020 21:45
Show Gist options
  • Save markiv/c9db4d129c3875a0188ddfb427d26d58 to your computer and use it in GitHub Desktop.
Save markiv/c9db4d129c3875a0188ddfb427d26d58 to your computer and use it in GitHub Desktop.
FloatingTextField1.swift
struct FloatingTextField: View {
let title: String
let text: Binding<String>
var body: some View {
VStack(alignment: .leading, spacing: 2) {
Text(title)
.font(.caption)
.foregroundColor(Color(.placeholderText))
TextField(title, text: text)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment