mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
21 lines
572 B
Swift
21 lines
572 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
extension Backport where Content: 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
|
|
}
|
|
}
|
|
}
|