Added the base of the Menu Bar UI
This commit is contained in:
parent
1378eb7eb3
commit
5ae3d37243
8 changed files with 127 additions and 8 deletions
|
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue