add ip and mac addr

animated the changes
This commit is contained in:
neon443
2025-04-27 21:34:49 +01:00
parent 64a517333b
commit 9c68de0af0
19 changed files with 274 additions and 21 deletions

View File

@@ -48,6 +48,24 @@ struct ContentView: View {
Image(systemName: "rectangle.and.pencil.and.ellipsis")
}
}
NavigationLink() {
IPView()
} label: {
HStack {
Text("IP Adresses")
Spacer()
Image(systemName: "network")
}
}
NavigationLink() {
MACView()
} label: {
HStack {
Text("MAC Adresses")
Spacer()
Image(systemName: "antenna.radiowaves.left.and.right")
}
}
}
.navigationTitle("RNG")
.navigationBarTitleDisplayMode(.inline)