AlarmActiveSection.swift 330 B

12345678910111213141516
  1. // LoopFollow
  2. // AlarmActiveSection.swift
  3. import SwiftUI
  4. struct AlarmActiveSection: View {
  5. @Binding var alarm: Alarm
  6. var body: some View {
  7. Section(header: Text("Active During")) {
  8. AlarmEnumMenuPicker(title: "Active",
  9. selection: $alarm.activeOption)
  10. }
  11. }
  12. }