> For the complete documentation index, see [llms.txt](https://eneskaraosman53.gitbook.io/swiftui/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eneskaraosman53.gitbook.io/swiftui/ui-components/secure-field.md).

# SecureField

`TextField` bileşeninden tek farkı içeriğini şifreli, yani görünmeyecek şekilde gösterir.

```swift
@State var password = ""

// İlk parametre placeholder text.
SecureField("Password", text: $password)
    .textFieldStyle(RoundedBorderTextFieldStyle()) // Optional
```

![SecureField demo](/files/-M613VRYCX_m4OW3cy2Q)
