Feat: Working on pressure estimations feature

This commit is contained in:
2024-06-04 13:06:49 -04:00
parent 04c899da8e
commit 076488beb4
19 changed files with 1206 additions and 128 deletions

View File

@@ -321,6 +321,8 @@ public struct CalculateAtView: View {
Text("Inputs")
Spacer()
InfoButton { send(.infoButtonTapped) }
.foregroundStyle(Color.accentColor)
.buttonStyle(.plain)
}
.labelStyle(.iconOnly)
} footer: {
@@ -338,7 +340,7 @@ public struct CalculateAtView: View {
Spacer()
}
.bind($focus, to: $store.focus)
.onAppear { send(.onAppear) }
.onAppear { focus = .existingAirflow }
.sheet(isPresented: $store.isPresentingInfoView) {
NavigationStack {
InfoView(calculationType: store.calculationType)