Swift & SwiftUI
  • İçerikler
  • UI Bileşenleri
    • Text
    • Button
    • Image
    • Picker
    • SecureField
    • Stepper
    • Slider
    • TabView
    • Sheet
    • Action Sheet
    • Alert
  • Layout
    • Fill-Space-Equally
  • State & Data Flow
    • Content
    • EnvironmentObject
    • ObservableObject
    • ObservedObject
    • Binding
  • Gestures
    • TapGesture
    • DragGesture
    • MagnificationGesture
    • RotationGesture
    • LongPressGesture
    • Notes
  • Extra
    • GeometryReader
    • Timer
    • AlignmentGuide
    • PreferenceKey
  • Concurrency
    • Perform asynchronous operation
Powered by GitBook
On this page

Was this helpful?

  1. UI Bileşenleri

SecureField

Maskeli bir şekilde text girişi yapabilmemize yarar.

PreviousPickerNextStepper

Last updated 5 years ago

Was this helpful?

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

@State var password = ""

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

SecureField demo