Skip to main content
Question

Subscription Price is INR 0

  • December 1, 2024
  • 0 replies
  • 21 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

Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings