add menu bar

This commit is contained in:
neon443
2025-03-13 09:05:52 +00:00
parent bba9dea8f3
commit 2b2aaadb8c
4 changed files with 40 additions and 5 deletions

View File

@@ -10,10 +10,16 @@ import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
Button() {
NSApp.terminate(nil)
} label: {
Text("Quit")
}
}
.padding()
}

View File

@@ -9,9 +9,30 @@ import SwiftUI
@main
struct DockPhobiaApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
var body: some Scene {
MenuBarExtra(
"Menu Bar",
systemImage: "star"
) {
ContentView()
.overlay(alignment: .topLeading) {
Button() {
NSApp.terminate(nil)
} label: {
Image(systemName: "xmark.circle.fill")
.foregroundStyle(.blue)
}
.buttonStyle(PlainButtonStyle())
}
.frame(width: 300, height: 180)
}
.menuBarExtraStyle(.window)
}
}
//struct DockPhobiaApp: App {
// var body: some Scene {
// WindowGroup {
// ContentView()
// }
// }
//}