{"id":15717949,"url":"https://github.com/astzweig/swiftui-frameless-window","last_synced_at":"2026-02-02T13:13:49.867Z","repository":{"id":156787026,"uuid":"633033074","full_name":"astzweig/swiftui-frameless-window","owner":"astzweig","description":"🚥 Frameless window Scene for SwiftUI. Just a bare window.","archived":false,"fork":false,"pushed_at":"2024-07-11T23:31:03.000Z","size":197,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T08:38:12.475Z","etag":null,"topics":["frameless-window","macos-app","scene","swiftui"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"eupl-1.2","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/astzweig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-26T16:27:00.000Z","updated_at":"2025-01-15T12:37:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"2e8accdd-ad7d-4ffb-a990-b252593664b4","html_url":"https://github.com/astzweig/swiftui-frameless-window","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astzweig%2Fswiftui-frameless-window","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astzweig%2Fswiftui-frameless-window/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astzweig%2Fswiftui-frameless-window/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astzweig%2Fswiftui-frameless-window/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/astzweig","download_url":"https://codeload.github.com/astzweig/swiftui-frameless-window/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241108415,"owners_count":19910981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["frameless-window","macos-app","scene","swiftui"],"created_at":"2024-10-03T21:51:44.092Z","updated_at":"2026-02-02T13:13:44.835Z","avatar_url":"https://github.com/astzweig.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FramelessWindow\n![Frameless window on macOS](Examples/Frameless-Window.png)\n\nFramelessWindow adds a new window scenes to SwiftUI. Frameless windows are\nwindows without a titlebar and only the close default button.\nFrameless windows are often used as a launcher window, i.e. as Xcode does.\n\n## Usage\nCreate a window without the title bar and only the close default button.\n\n```swift\nimport SwiftUI\nimport FramelessWindow\n\n@main\nstruct YourApp: App {\n    var body: some Scene {\n        FramelessWindow(\"Window Title\", id: \"window-id\") {\n            ContentView()\n        }\n    }\n}\n```\n\n## Documentation\nThe library has enriched symbol documentation for [DocC].\n\n[DocC]: https://www.swift.org/documentation/docc/documenting-a-swift-framework-or-package\n\n## Testing `FramelessWindow`\nFramelessWindow includes an executable target that launches a SwiftUI app to\ntest `FramelessWindow`. Either execute it with\n\n```sh\n$ swift run\n```\n\nor select the `TestApp` under `Product \u003e Scheme` in Xcode.\n\n## Adding `FramelessWindow` as a Dependency\n\nTo use the `FramelessWindow` library in a SwiftUI project, \nadd it to the dependencies for your package:\n\n```swift\nlet package = Package(\n    // name, platforms, products, etc.\n    dependencies: [\n        // other dependencies\n        .package(url: \"https://github.com/astzweig/swiftui-frameless-window\", from: \"1.0.0\"),\n    ],\n    targets: [\n        .executableTarget(name: \"\u003ccommand-line-tool\u003e\", dependencies: [\n            // other dependencies\n            .product(name: \"FramelessWindow\", package: \"swiftui-frameless-window\"),\n        ]),\n        // other targets\n    ]\n)\n```\n\n### Supported Versions\n\nThe minimum Swift version supported by swiftui-frameless-window releases are detailed below:\n\nswiftui-frameless-window   | Minimum Swift Version\n---------------------------|----------------------\n`0.0.1 ...`                | 5.7\n`2.0.0 ...`                | 5.10\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastzweig%2Fswiftui-frameless-window","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fastzweig%2Fswiftui-frameless-window","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastzweig%2Fswiftui-frameless-window/lists"}