Skip to content

Instantly share code, notes, and snippets.

@blsage
Last active November 3, 2020 21:04
Show Gist options
  • Save blsage/83eb799765bcadd9406f3faae153757f to your computer and use it in GitHub Desktop.
Save blsage/83eb799765bcadd9406f3faae153757f to your computer and use it in GitHub Desktop.
iPhoneNumberField flags
import SwiftUI
import iPhoneNumberField
struct ContentView: View {
@State var text = ""
var body: some View {
iPhoneNumberField(text: $text)
.flagHidden(false)
.flagSelectable(true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment