mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
Dismiss keyboard interactively
This commit is contained in:
parent
cfd85a018e
commit
3d45aa357e
@ -2,11 +2,19 @@ import Foundation
|
||||
import SwiftUI
|
||||
|
||||
extension Backport where Content: View {
|
||||
@ViewBuilder func scrollDismissesKeyboard() -> some View {
|
||||
@ViewBuilder func scrollDismissesKeyboardImmediately() -> some View {
|
||||
if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
|
||||
content.scrollDismissesKeyboard(.immediately)
|
||||
} else {
|
||||
content
|
||||
}
|
||||
}
|
||||
|
||||
@ViewBuilder func scrollDismissesKeyboardInteractively() -> some View {
|
||||
if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
|
||||
content.scrollDismissesKeyboard(.interactively)
|
||||
} else {
|
||||
content
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ struct SearchView: View {
|
||||
}
|
||||
}
|
||||
.backport
|
||||
.scrollDismissesKeyboard()
|
||||
.scrollDismissesKeyboardInteractively()
|
||||
#else
|
||||
ZStack {
|
||||
results
|
||||
|
@ -29,7 +29,7 @@ struct SettingsView: View {
|
||||
.alert(isPresented: $model.presentingAlert) { model.alert }
|
||||
#if os(iOS)
|
||||
.backport
|
||||
.scrollDismissesKeyboard()
|
||||
.scrollDismissesKeyboardInteractively()
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user