| 1234567891011121314151617 |
- // LoopFollow
- // AlarmActiveSection.swift
- // Created by Jonas Björkert on 2025-05-12.
- import SwiftUI
- struct AlarmActiveSection: View {
- @Binding var alarm: Alarm
- var body: some View {
- Section(header: Text("Active During")) {
- AlarmEnumMenuPicker(title: "Active",
- selection: $alarm.activeOption)
- }
- }
- }
|