diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-10-21 23:54:10 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-10-21 23:54:10 -0600 |
commit | 05165cc8d98ef5ffa8ee3a8ba9bf1ad5e0b5a9ab (patch) | |
tree | 7baea43c47d6c6fd00f87de3bb870df7966460ae /iTexSnip/iTexSnipApp.swift | |
parent | 126c5a27ee98146c349303ecc7c77f6413cfe5fe (diff) |
swift-format
Diffstat (limited to 'iTexSnip/iTexSnipApp.swift')
-rw-r--r-- | iTexSnip/iTexSnipApp.swift | 32 |
1 files changed, 14 insertions, 18 deletions
diff --git a/iTexSnip/iTexSnipApp.swift b/iTexSnip/iTexSnipApp.swift index c4d686a..b5937ba 100644 --- a/iTexSnip/iTexSnipApp.swift +++ b/iTexSnip/iTexSnipApp.swift @@ -5,27 +5,23 @@ // Created by Navan Chauhan on 10/13/24. // -import SwiftUI import SwiftData - +import SwiftUI @main struct iTexSnipApp: App { - var body: some Scene { -// WindowGroup { -// MenuBarView() -// .modelContainer(for: ImageSnippet.self) -// } - MenuBarExtra("iTexSnip", systemImage: "function") { - MenuBarView() - .frame(width: 500, height: 600) - .modelContainer(for: ImageSnippet.self) - }.menuBarExtraStyle(.window) - Settings { - PreferencesView() - } + var body: some Scene { + // WindowGroup { + // MenuBarView() + // .modelContainer(for: ImageSnippet.self) + // } + MenuBarExtra("iTexSnip", systemImage: "function") { + MenuBarView() + .frame(width: 500, height: 600) + .modelContainer(for: ImageSnippet.self) + }.menuBarExtraStyle(.window) + Settings { + PreferencesView() } + } } - - - |