Avatar
struct TextView: UIViewRepresentable { func makeUIView(context: Context) -> UITextView { UITextView() } func updateUIView(_ uiView: UITextView, context: Context) { } } struct ContentView: View { var body: some View { VStack { TextView() } } }
2:17 AM
これでおきる?
2:17 AM
一瞬それらしい挙動がおきたんだけど再現手順がわかってない