- // LoopFollow
- // AlarmActiveSection.swift
- import SwiftUI
- struct AlarmActiveSection: View {
- @Binding var alarm: Alarm
- var body: some View {
- Section(header: Text("Active During")) {
- AlarmEnumMenuPicker(title: String(localized: "Active"),
- selection: $alarm.activeOption)
- }
- }
- }
|