mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/5b7576a8-e0c0-4036-8b7e-8f2e6fbfa4d7 Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com>
13 lines
223 B
Swift
13 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
|
|
}
|
|
}
|