21 lines
289 B
Swift
21 lines
289 B
Swift
import SwiftUI
|
|
|
|
extension View {
|
|
|
|
public func numberPad() -> some View {
|
|
#if os(iOS)
|
|
self.keyboardType(.numberPad)
|
|
#else
|
|
self
|
|
#endif
|
|
}
|
|
|
|
public func decimalPad() -> some View {
|
|
#if os(iOS)
|
|
self.keyboardType(.decimalPad)
|
|
#else
|
|
self
|
|
#endif
|
|
}
|
|
}
|