Skip to content

Instantly share code, notes, and snippets.

@blsage
Created October 19, 2020 22:31
Show Gist options
  • Save blsage/c315ecb132db77c60e0b2d107294bbec to your computer and use it in GitHub Desktop.
Save blsage/c315ecb132db77c60e0b2d107294bbec to your computer and use it in GitHub Desktop.
iTextField simple example
import SwiftUI
import iTextField
struct ContentView: View {
@State var text: String = ""
@State var isEditing: Bool = false
var body: some View {
iTextField("Placeholder", text: $text, isEditing: $isEditing)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment