I am developing a package of Swift Package Manager where SwiftUI views need to be included.
Every SwiftUI view should have a preview.
However, when I try to
In Xcode 12 that has changed. Previews are enabled in Swift Packages. In fact, a lot of changes and new features were added that improve the user and developer experience for SwiftUI library extensions. You can watch this WWDC20 session to learn more.
To get it to work in the first beta of Xcode 12 you have to create a library Swift Package. Make sure you program can build - and that SwiftUI is imported. Also, remember to add the platforms supported in the package manifest - that are supported by SwiftUI and your package code. In the scheme selector select the library that you want to preview and a device supported by your library. After that enable the canvas the preview should be visible. There are currently some rough corners, but I hope errors and usability will improve on later versions.