When I try below code and show Emoji keyboard, keyboard will hide with Emoji keyboard horizontal scroll.
I applied "keyboardDismissMode" to make keyboard hide with scrollview but I think "keyboardDimissMode" apples Emoji keyboard's ScrollView also. so I would like to apply that only ScrollView in the ContentView. Are there any solutions?
struct ContentView: View {
@State private var text: String = ""
var body: some View {
ScrollView {
TextField("Text", text: $text)
}
.onAppear {
UIScrollView.appearance().keyboardDismissMode = .interactive
}
}
}