You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I'm using the Template 4 Paywall in our visionOS app. Unfortunately, "Monthly" is split over two lines like "Month-ly" despite enough room. I tried adding more space to the paywall view, but no luck.
Environment
Platform: visionOS
SDK version: 4.36.3
StoreKit version:
StoreKit 1
StoreKit 2 (enabled with usesStoreKit2IfAvailable(true))
OS version: visionOS 1.0
Xcode version: 15.2
Device and/or simulator:
[ x] Device
[ x] Simulator
Environment:
[x ] Sandbox
[ x] TestFight
[ x] Production
How widespread is the issue. Percentage of devices affected. 100%
Debug logs that reproduce the issue. Complete logs with Purchases.logLevel = .verbose will help us debug this issue.
Logs here: None
Steps to reproduce, with a description of expected vs. actual behavior
Create a Paywall view with Template 4 like so:
.sheet(isPresented: $payments.presentPaywall, content: { // We have to add another sheet here because you can't have two modals at once.
PaywallView(displayCloseButton: false)
.frame(width: 500, height: 800)
.overlay {
VStack {
HStack {
Spacer()
Button {
payments.presentPaywall = false
} label: {
Image(systemName: "xmark")
}
.padding()
}
Spacer()
}
}
})
Have one of the options named: "Monthly" as a package.
See it split over two lines.
Other information (e.g. stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, etc.) N/A
Additional context
Add any other context about the problem here. N/A
The text was updated successfully, but these errors were encountered:
Describe the bug
I'm using the Template 4 Paywall in our visionOS app. Unfortunately, "Monthly" is split over two lines like "Month-ly" despite enough room. I tried adding more space to the paywall view, but no luck.
usesStoreKit2IfAvailable(true)
)Purchases.logLevel = .verbose
will help us debug this issue.Create a Paywall view with Template 4 like so:
Have one of the options named: "Monthly" as a package.
See it split over two lines.
Other information (e.g. stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, etc.) N/A
Additional context
Add any other context about the problem here. N/A
The text was updated successfully, but these errors were encountered: