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,15 @@
import SwiftUI
public struct InfoButton: View {
let action: () -> Void
public init(action: @escaping () -> Void) {
self.action = action
}
public var body: some View {
Button(action: action) {
Label("Info", systemImage: "info.circle")
}
}
}