mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
14 lines
223 B
Swift
14 lines
223 B
Swift
|
|
//
|
||
|
|
// UIKeyboard.swift
|
||
|
|
// Meshtastic
|
||
|
|
//
|
||
|
|
// Copyright(c) Garth Vander Houwen 1/7/26.
|
||
|
|
//
|
||
|
|
import UIKit
|
||
|
|
|
||
|
|
extension UIKeyboardType {
|
||
|
|
static var emoji: UIKeyboardType {
|
||
|
|
return UIKeyboardType(rawValue: 124) ?? .default
|
||
|
|
}
|
||
|
|
}
|