Added the base of the Menu Bar UI

This commit is contained in:
SerenityUX 2023-04-26 21:26:43 -04:00
parent 1378eb7eb3
commit 5ae3d37243
8 changed files with 127 additions and 8 deletions

View file

@ -2,13 +2,44 @@ import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
VStack(alignment: .leading) {
HStack {
Text("Networks")
.font(.title3)
Spacer()
Image(systemName: "badge.plus.radiowaves.forward")
.symbolRenderingMode(.palette)
.foregroundStyle(.blue, .black)
.imageScale(.large) }
Divider()
VStack(alignment: .leading) {
Text("Your Burrows")
.padding(.top, 2)
.font(.subheadline)
.fontWeight(.bold)
HStack {
Image("sampleNetworkIcon")
.resizable()
.frame(width: 32, height: 32)
.cornerRadius(100)
VStack(alignment: .leading) {
Text("Penguin Pair Burrow")
.fontWeight(.medium)
Text("􁠲 Recently Validated Certificate")
.font(.caption2)
.foregroundColor(.blue)
}
}
}
}
.padding()
.padding()
}
}