var welcomeText: UITextField = {
let textField = UITextField()
textField.layer.cornerRadius = 25
textField.text = "Hello, are you \n Im doing good! "
textField.textColor = .white
return textField
}()
I can't figure this out. Any help would be appreciated!