7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

はじめに

@FocusStateを子Viewに渡して使うときの方法がちょっと特殊だったので記録しておきます。

実装

親View

struct ContentView: View {
    @State private var text: String = ""

+   @FocusState private var focused: Bool

    var body: some View {
        VStack(spacing: 50) {
+           SubView(text: $text, focused: $focused)
            
            Button {
                focused.toggle()
            } label: {
                Text("切り替え")
            }
        }
        .padding(20)
    }
}

子View

struct SubView: View {
+   @Binding var text: String
    
    var focused: FocusState<Bool>.Binding

    var body: some View {
        TextField("", text: $text)
+           .focused(focused.projectedValue, equals: true)
            .textFieldStyle(.roundedBorder)
    }
}

参考記事

おわり

初知りでした

7
3
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
7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?