I am building a macOS-app using SwiftUI and the new App lifecycle.
I would love to change the contents of the “About Window” (that appears when you tap “About DemoApp” in the apps’ menu) but have no idea how:
How can I replace the About view with a custom one?



You can do it but it does require creating an AppDelegate. Here's what your AppFile should look like:
and your AppDelegate Should Look like this:
Then, just make a SwiftUI View named AboutView and it'll display that in your About Box. For Example: