AlarmActiveSection.swift 361 B

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