Sorry if it was asked before, I searched but couldn’t find anything :(
What is the best way to calculate the price for annual subscription per month/week? I want to show user, how much he/she will pay for an annual subscription each month or week.
An app already implementing this, is Snapchat. I checked all over revenuecat documentation but didn’t find this feature.
Hey
A great way of doing this would be calling the priceString property and dividing that number returned by the length of the subscription. For example, for the annual product diving that returned result by 12. This would return the monthly price of the annual product.
Also, for the denominator, is there a numbers somewhere for 1 (one month), 2 (two months), etc? This way it is more dynamic and we do not need to have a map for each length of subscription.
I think i see a property called `price` with the raw number so maybe that is better..
I am trying to do the same and it’s anything but trivial with the limited information the react-native-purchases package provides.
The only method I see right now is dividing price by 12, and the using the currency code to create a price String myself. But I might still run into issues with rounding here? Also it’s super hard to test with all the different currencies without creating hundreds of sandbox users.
I see that for the paywall templates, RC provides a lot of helpful variables like “sub_price_per_month” etc. It would be super helpful to expose these to the Purchases.getOfferings() call in the react-native package.
I really need this feature please add
Hi @Isaak,
You can now get this through our SDK, you can get the price per week, per month and per year out of the box.
package.storeProduct.pricePerWeek
package.storeProduct.pricePerMonth
package.storeProduct.pricePerYear
You can also get the localized version for all options.
Let me know if this works!
Yes but it does not come with the currency, I need the currency the full string
Using the localizedPricePerMonth should include the currency
Okay nice that is great! thank you so much.
Now also one more thing, is it easy to A/B test pricing walls or pricing with Revenuecat, is it like a 20min thing to set up. Also can you a/b test onboarding as well, and its impact on CLV
Wait the localizedPricePerMonth it's not available in react native? I can not see it in the offers object?
okay i think I found the answer, we can use something like this
function getFormattedMonthlyPrice(offerings) {
if (!offerings?.current?.annual?.product) return "";
const annualProduct = offerings.current.annual.product;
const monthlyPrice = annualProduct.price / 12;
// Use Intl.NumberFormat for formatting
const formatter = new Intl.NumberFormat(undefined, {
style: "currency",
currency: annualProduct.currencyCode,
});
return formatter.format(monthlyPrice);
}
where the Intl.NumberFormat is just native javascript functionality big javascript W
Using the localizedPricePerMonth should include the currency
Hola Joan!
is this available in the 8.3.2 flutter SDK?
Thanks!
Xavi
This is not in our Flutter SDK at the moment, but I can pass this along as a feature request on your behalf
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.