SecureField
约 60 字小于 1 分钟
swiftiosswiftui
2024-08-02
文档:https://developer.apple.com/documentation/swiftui/securefield
用户安全地输入私人文本的控件。
@State var password: String = "1234"
var body: some View {
SecureField($password)
.textFieldStyle(RoundedBorderTextFieldStyle())
.padding()
}