Contents

CodeEditApp/AboutWindow

An about window for macOS applications.

Documentation

This package is fully documented here.

Usage

To use AboutWindow, simply add it to your app.

AboutWindow(actions: {
    AboutButton(title: "Contributors", destination: {
        ContributorsView()
    })
    AboutButton(title: "Acknowledgements", destination: {
        AcknowledgementsView()
    })
    SomeActionButton(title: "Some Custom Stuff") {
        MatchedTitle("Hello")
    }
}, footer: {
    FooterView(
        primaryView: {
            Link(destination: URL(string: "https://opensource.org/licenses/MIT")!) {
                Text("MIT License")
                    .underline()
            }
        },
        secondaryView: {
            Text("© 2025 Example Inc.")
        }
    )
})

License

Licensed under the MIT license

Package Metadata

Repository: CodeEditApp/AboutWindow

Homepage: https://codeeditapp.github.io/AboutWindow/documentation/aboutwindow/

Stars: 26

Forks: 1

Open issues: 0

Default branch: main

Primary language: swift

License: MIT

Topics: appkit, macos, swift, swiftui

README: README.md