feat: Adds airflow at pressure feature.

This commit is contained in:
2024-05-28 10:09:59 -04:00
parent c1741de3f9
commit 187a682a63
6 changed files with 323 additions and 93 deletions

View File

@@ -0,0 +1,20 @@
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
}
}