源码地址:https://github.com/fzhlee/SwiftUI-Guide
相当于UITexfield的secureTextEntry的属性设置为true时的情况。
示例代码:
struct ContentView : View {
@State var password : String
var body: some View {
VStack{
Text("Your password is \(password)!")
SecureField("Your password", text: $password) {
print("Your password is \(self.password)!")
}
.textFieldStyle(RoundedBorderTextFieldStyle())
}
.padding()
}
}