| 1234567891011121314151617181920212223 |
- // LoopFollow
- // TempTargetStartAlarmEditor.swift
- // Created by Jonas Björkert on 2025-05-14.
- import SwiftUI
- struct TempTargetStartAlarmEditor: View {
- @Binding var alarm: Alarm
- var body: some View {
- Form {
- InfoBanner(text: "Alerts when a temp target starts.", alarmType: alarm.type)
- AlarmGeneralSection(alarm: $alarm)
- AlarmActiveSection(alarm: $alarm)
- AlarmAudioSection(alarm: $alarm, hideRepeat: true)
- AlarmSnoozeSection(alarm: $alarm, range: 10 ... 60, step: 5)
- }
- .navigationTitle(alarm.type.rawValue)
- }
- }
|