1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-12 21:30:32 +05:30
yattee/Backports/ScrollDismissesKeyboard+Backport.swift

21 lines
572 B
Swift
Raw Normal View History

2022-08-17 21:04:25 +05:30
import Foundation
import SwiftUI
extension Backport where Content: View {
2023-02-07 02:21:57 +05:30
@ViewBuilder func scrollDismissesKeyboardImmediately() -> some View {
2022-08-17 21:04:25 +05:30
if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
content.scrollDismissesKeyboard(.immediately)
} else {
content
}
}
2023-02-07 02:21:57 +05:30
@ViewBuilder func scrollDismissesKeyboardInteractively() -> some View {
2023-02-25 21:12:18 +05:30
if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
content.scrollDismissesKeyboard(.interactively)
} else {
content
2023-02-07 02:21:57 +05:30
}
2023-02-25 21:12:18 +05:30
}
2022-08-17 21:04:25 +05:30
}