NoRemoteView.swift 432 B

1234567891011121314151617181920
  1. // LoopFollow
  2. // NoRemoteView.swift
  3. // Created by Jonas Björkert.
  4. import SwiftUI
  5. struct NoRemoteView: View {
  6. private let remoteController = TrioNightscoutRemoteController()
  7. var body: some View {
  8. NavigationView {
  9. VStack {
  10. ErrorMessageView(
  11. message: "Remote commands are currently only available for Trio and Loop."
  12. )
  13. }
  14. }
  15. }
  16. }