I'm using the .appStoreOverlay modifier in a SwiftUI app clip. When running in the sim or on device in Xcode, the banner displays just fine. But the banner never displays in a TestFlight build. Is this expected or should I be seeing the banner in TF builds as well?
@State var showRecommended = false
var body: some View {
VStack {
...
}
.appStoreOverlay(isPresented: $showRecommended) {
SKOverlay.AppClipConfiguration(position: .bottomRaised)
}
.onAppear {
if condition { showRecommended = true }
}
}