Skip to main content
Question

Subscription Price is INR 0

  • December 1, 2024
  • 0 replies
  • 45 views

Forum|alt.badge.img+3

Hi! In my flutter app, the Google Play team found an error in the subscription screen. I use a code like below to show the price:
 

Text(
widget.package.storeProduct.introductoryPrice
?.priceString ??
widget.package.storeProduct.priceString,
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: Colors.black,
),
overflow: TextOverflow
.ellipsis, // Handle overflow with ellipsis
),
The PLN is okay, but the Google Team from India has INR, and it shows 0. I don’t know why or how to fix or even test it.
As you can see the price for the month is ok. I use here code:
  TextSpan(
text: widget.package.storeProduct
.currencyCode ??
'',
),
TextSpan(
text: " " +
(widget.package.storeProduct.price /
12)
.toStringAsFixed(2),
),
TextSpan(
text: "/" + context.tr("month"),
),
],

 

This post has been closed for comments