iOS Swift - User Input and Forms
Examine the following SwiftUI code snippet. What is the issue?
@State var password: String
var body: some View {
SecureField("Password", text: $password)
}