punchnet-macos/punchnet/Features/Network/Views/NetworkWaitAuthView.swift
2026-04-17 15:56:56 +08:00

21 lines
449 B
Swift

//
// NetworkWaitAuthView.swift
// punchnet
//
// Created by on 2026/4/17.
//
import SwiftUI
struct NetworkWaitAuthView: View {
var phase: NetworkConnectionPhase
var body: some View {
VStack(spacing: 16) {
ProgressView()
Text(self.phase == .disconnecting ? "正在断开网络..." : "正在建立安全连接...")
.foregroundColor(.secondary)
}
}
}