Files
Project_Velocity/iOS/velocity-ipad/velocity/Features/Inventory/SimulatorSunOverlayView.swift
Sayan Datta 6c93e31741
All checks were successful
Production Readiness / backend-contracts (pull_request) Successful in 3m19s
Production Readiness / webos-typecheck (pull_request) Successful in 2m38s
Production Readiness / ipad-parse (pull_request) Successful in 1m44s
feat: Ipad app production readiness, Colony orchestration, Social posting
2026-05-03 18:28:04 +05:30

21 lines
456 B
Swift

import SwiftUI
#if targetEnvironment(simulator)
struct SimulatorSunOverlayView: View {
@Binding var sunNodesReady: Bool
var body: some View {
ContentUnavailableView(
"Sunseeker Unavailable",
systemImage: "arkit",
description: Text("Run on a physical iPad to use live location, heading, and ARKit camera data.")
)
.onAppear {
sunNodesReady = false
}
}
}
#endif