NoRemoteView.swift 401 B

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