| 123456789101112131415161718192021 |
- // LoopFollow
- // TempTargetStartAlarmEditor.swift
- import SwiftUI
- struct TempTargetStartAlarmEditor: View {
- @Binding var alarm: Alarm
- var body: some View {
- Group {
- InfoBanner(text: String(localized: "Alerts when a temp target starts."), alarmType: alarm.type)
- AlarmGeneralSection(alarm: $alarm)
- AlarmActiveSection(alarm: $alarm)
- AlarmAudioSection(alarm: $alarm, hideRepeat: true)
- AlarmSnoozeSection(alarm: $alarm)
- }
- }
- }
|