punchnet-macos/punchnet/Views/Settings/SettingsDeviceView.swift
2026-01-19 11:36:45 +08:00

44 lines
825 B
Swift

//
// SettingsDeviceView.swift
// punchnet
//
// Created by on 2026/1/19.
//
import SwiftUI
struct SettingsDeviceView: View {
var body: some View {
VStack(alignment: .leading) {
Text("设备")
HStack {
Text("设备名称")
Text("史蒂夫的air")
Button {
} label: {
Text("修改")
}
}
HStack {
Text("虚拟IPv4")
Text("192.168.1.1")
}
HStack {
Text("虚拟IPv6")
Text("ab:ef:1")
}
Spacer()
}
}
}
#Preview {
SettingsDeviceView()
}