In my app once the user has successfully subscribed and has access to the app, I want to be able to display the current pricing that the user is on back to the user. This is fine if the user is not on an intro pricing plan, but I am having a hard time determining and then displaying this if the user is in an intro pricing period. I am able to find the correct intro pricing using the snippet below, but this does not help me figure out if the user is paying that price or the full price.
packageInfo.product.introPrice?.priceString
I am using React Native.
Thanks