I am working on a package that makes working with the Unsplash API simple. Here it is.
My problem is that when I add it to my test project, it can't find the package in scope however it can find my other package just fine. I don't see this won't work (I can provide a throwaway api key if you want to test the UnsplashRandom module but right now the fact the package won't import is the problem)
import SwiftUI
import UnsplashSwiftUI
struct UnsplashRandomTest: View {
var body: some View {
UnsplashRandom(clientId: "")
}
}
struct UnsplashRandomTest_Previews: PreviewProvider {
static var previews: some View {
UnsplashRandomTest()
}
}