Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. struct PasswordSecureField : View {
  2.  
  3. @Binding var password: String
  4.  
  5. var body: some View {
  6. return SecureField($password, placeholder: Text("Password"))
  7. .padding()
  8. .background(lightGreyColor)
  9. .cornerRadius(5.0)
  10. .padding(.bottom, 20)
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement