SwiftUI系列教程第1章第9节:TextField-SecureField

 

源码地址: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()
        
    }
}

查看运行结果SwiftUI系列教程第1章第9节:TextField-SecureField

上一篇:android – Textfield对齐输入文本中心


下一篇:flutter 学习笔记之封装一个textfield(倒计时获取验证码)