Adpluginx Documentation
  • 👋Welcome to AdPluginx
  • Installation
    • ⚙️Install Adpluginx
    • Configure Pod For Ios
    • Configure Info.plist
    • Configure SkAdNetworks
    • Configure AppDelegate
    • Creating Native AdView
    • Init Native View to Swift Class
    • Add Onesignal to Project
  • Ad Network Indexes
    • AdConfig
    • FullScreen Ad Indexes
    • Banner Ad Indexes
    • Native Ad Indexes
  • Apple SignIn & In App Purchase
    • Enable Apple SignIn And Use
    • Skip Logic
    • InApp Purchases
    • Coin Login
Powered by GitBook
On this page
  • Open Project in Xcode
  • Now Use Predefine InAppPurchase Page

Was this helpful?

  1. Apple SignIn & In App Purchase

InApp Purchases

Open Project in Xcode

And in Build & signin Enable InApp Purchase Option from capability.

Now Use Predefine InAppPurchase Page

InAppPurchaseScreen(
    appBarWidget: yourAppBarWidget(),
    onChildRender: (productDetails, previosPurchase) {
       return yourTileUI();
    },
    productIds: [], // Your Plan List
    onPurchaseCompleted: () {
        Navigator.pop(context);
    },
    onAuth: () {
     // Show your Login Ui
    },
 )
PreviousSkip LogicNextCoin Login

Last updated 2 years ago

Was this helpful?