started setting up the VPN status & checking for permissions

This commit is contained in:
SerenityUX 2023-04-29 12:54:54 -04:00
parent 5ae3d37243
commit 42590eaf00
12 changed files with 140 additions and 19 deletions

View file

@ -1,39 +1,41 @@
import SwiftUI
struct ContentView: View {
@State private var connectedHackClubNetwork = false
var body: some View {
VStack(alignment: .leading) {
HStack {
Text("Networks")
.font(.title3)
Spacer()
Image(systemName: "badge.plus.radiowaves.forward")
.symbolRenderingMode(.palette)
.foregroundStyle(.blue, .black)
.opacity(0.4)
.imageScale(.large) }
Divider()
VStack(alignment: .leading) {
Text("Your Burrows")
Text("Burrows")
.padding(.top, 2)
.font(.subheadline)
.fontWeight(.bold)
.font(.subheadline.weight(.bold))
HStack {
Image("sampleNetworkIcon")
Image("hackClubLogo")
.resizable()
.frame(width: 32, height: 32)
.cornerRadius(100)
VStack(alignment: .leading) {
Text("Penguin Pair Burrow")
Text("Hack Club Network")
.fontWeight(.medium)
Text("􁠲 Recently Validated Certificate")
.font(.caption2)
.foregroundColor(.blue)
}.onTapGesture {
connectedHackClubNetwork = true
}
}
}