AlarmActiveSection.swift 443 B

123456789101112131415161718192021
  1. //
  2. // AlarmActiveSection.swift
  3. // LoopFollow
  4. //
  5. // Created by Jonas Björkert on 2025-05-12.
  6. // Copyright © 2025 Jon Fawcett. All rights reserved.
  7. //
  8. import SwiftUI
  9. struct AlarmActiveSection: View {
  10. @Binding var alarm: Alarm
  11. var body: some View {
  12. Section(header: Text("Active During")) {
  13. AlarmEnumMenuPicker(title: "Active",
  14. selection: $alarm.activeOption)
  15. }
  16. }
  17. }