Created
October 20, 2020 17:45
-
-
Save blsage/6204d3faa8dbbbe6bacce4ab389153df to your computer and use it in GitHub Desktop.
Revisions
-
Benjamin Sage created this gist
Oct 20, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ import SwiftUI import iPhoneNumberTextField struct ContentView: View { @State var text: String = "" @State var isEditing: Bool = false var body: some View { iPhoneNumberTextField("Placeholder", text: $text, isEditing: $isEditing) } }