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

@@ -401,6 +401,7 @@
ENABLE_HARDENED_RUNTIME = YES; ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES; ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_LSUIElement = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = ""; INFOPLIST_KEY_NSHumanReadableCopyright = "";
LD_RUNPATH_SEARCH_PATHS = ( LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
@@ -428,6 +429,7 @@
ENABLE_HARDENED_RUNTIME = YES; ENABLE_HARDENED_RUNTIME = YES;
ENABLE_PREVIEWS = YES; ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_LSUIElement = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = ""; INFOPLIST_KEY_NSHumanReadableCopyright = "";
LD_RUNPATH_SEARCH_PATHS = ( LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
uuid = "96D1F956-5AAB-440D-982D-5EA295D85CCD"
type = "1"
version = "2.0">
</Bucket>

View File

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

View File

@@ -10,8 +10,29 @@ import SwiftUI
@main @main
struct DockPhobiaApp: App { struct DockPhobiaApp: App {
var body: some Scene { var body: some Scene {
WindowGroup { MenuBarExtra(
"Menu Bar",
systemImage: "star"
) {
ContentView() 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()
// }
// }
//}