Skip to content

Instantly share code, notes, and snippets.

@thatswiftguy
Created April 11, 2021 16:22
Show Gist options
  • Save thatswiftguy/f8a8cff96a9fde6d3ad9b3b4da89f76b to your computer and use it in GitHub Desktop.
Save thatswiftguy/f8a8cff96a9fde6d3ad9b3b4da89f76b to your computer and use it in GitHub Desktop.
//
// KeyBoardExtension.swift
// TaskManager
//
// Created by Mohammad Yasir on 11/04/21.
//
import Foundation
import SwiftUI
#if canImport(UIKit)
extension View {
func hideKeyboard() {
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment