mirror of
				https://github.com/yattee/yattee.git
				synced 2025-10-31 04:31:54 +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
 | |
|         }
 | |
|     }
 | |
| }
 | 
