mirror of
				https://github.com/yattee/yattee.git
				synced 2025-11-04 06:32:03 +00:00 
			
		
		
		
	Dismiss keyboard interactively
This commit is contained in:
		@@ -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
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user