0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SwiftUIでパスワード入力UIを実装する

Last updated at Posted at 2025-03-14

はじめに

今回はよくあるパスワード入力用UIを実装していきます

実装コード

細かい点などはコメントで記載してあります

struct PasswordInputFieldView: View {
    let titleKey: String
    @Binding var text: String
    var hasError: Bool

    @State var isShowSecure = false
    @FocusState var isTextFieldFocused: Bool
    @FocusState var isSecureFieldFocused: Bool

    private var isFocused: Bool {
        isTextFieldFocused || isSecureFieldFocused
    }

    var body: some View {
        HStack {
            // ZStackで同一箇所に表示してopacityで切り替える
            ZStack {
                TextField(titleKey, text: $text)
                .focused($isTextFieldFocused)
                 .keyboardType(.asciiCapable)
                 .autocorrectionDisabled(true)
                 .textInputAutocapitalization(.none)
                 .opacity(isShowSecure ? 1 : 0)

                SecureField(titleKey, text: $text)
                 .focused($isSecureFieldFocused)
                 .opacity(isShowSecure ? 0 : 1)
            }
            .frame(height: 40)
            // 表示切り替え用ボタン
            Button {
                if isShowSecure {
                    isShowSecure = false
                    isSecureFieldFocused = true
                } else {
                    isShowSecure = true
                    isTextFieldFocused = true
                }
            } label: {
                Image(isShowSecure ? .openEyeIcon : .closeEyeIcon)
                    .frame(width: 24, height: 24)
                    .disabled(true)
            }
            .buttonStyle(.plain)
        }
        .padding(.horizontal, 6)
        .frame(height: 40)
        .background(hasError ? Color.red : Color.white)
        .overlay(
            // 入力欄用の枠組
            RoundedRectangle(cornerRadius: 8)
                .stroke(
                    hasError ? Color.red :
                        isFocused ? Color.blue : Color.black,
                    lineWidth: 1
                )
        )
        .tint(hasError ? Color.red : Color.blue)
    }
}

最後に

実装する機会の多いUIなので自分でもパッとコピペできるように備忘録としての役割が強いですが、どなたかのお役に立てれば幸いです

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?