| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import SwiftUI
- struct UnitSelectionStepView: View {
- @Bindable var state: Onboarding.StateModel
- var body: some View {
- VStack(alignment: .leading, spacing: 20) {
- Text("Please choose from the options below.")
- .font(.headline)
- .padding(.horizontal)
- HStack {
- Text("Glucose Units")
- Spacer()
- Picker("Glucose Units", selection: $state.units) {
- ForEach(GlucoseUnits.allCases, id: \.self) { unit in
- Text(unit.rawValue).tag(unit)
- }
- }
- }
- .padding()
- .background(Color.chart.opacity(0.65))
- .cornerRadius(10)
- HStack {
- Text("Pump Model")
- Spacer()
- Picker("Pump Model", selection: $state.pumpOptionForOnboardingUnits) {
- ForEach(PumpOptionForOnboardingUnits.allCases, id: \.self) { pumpModel in
- Text(pumpModel.displayName).tag(pumpModel)
- }
- }
- .onChange(of: state.pumpOptionForOnboardingUnits, { _, newValue in
- state.remapTherapyItemsForChangedPumpModel()
- // Conditionally set rewind setting, if pump model is Medtronic (.minimed) or Dana (i/RS)
- state.rewindResetsAutosens = (newValue == .minimed || newValue == .dana)
- })
- .onChange(of: state.units, { _, _ in
- state.remapTherapyItemsForChangedUnits()
- })
- }
- .padding()
- .background(Color.chart.opacity(0.65))
- .cornerRadius(10)
- Text(
- "Note: Choosing your pump model determines which increments for setting up your basal rates are available. You will pair your actual pump after finishing the onboarding process."
- )
- .padding(.horizontal)
- .font(.footnote)
- .foregroundStyle(Color.secondary)
- .multilineTextAlignment(.leading)
- }
- }
- }
|