16 lines
350 B
Swift
16 lines
350 B
Swift
//
|
|
// Notification.swift
|
|
// MattermostShare
|
|
//
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
extension Notification {
|
|
var keyboardHeight: CGFloat {
|
|
return (userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? CGRect)?.height ?? 0
|
|
}
|
|
}
|