Apple Pay is a mobile payment and digital wallet service by Apple that allows users to make payments in person, in apps, and on the web. It is compatible with the iPhone, Apple Watch, iPad, and Mac. It uses NFC technology to communicate with contactless payment terminals, so you can pay with just a touch or a glance. It also works with Face ID and Touch ID to authenticate your identity and protect your privacy. Apple Pay is faster and easier than using cards or cash
Update Merchant ID
Open file cirilla/ios/Runner/Runner.entitlements
Add
<key>com.apple.developer.in-app-payments</key>
<array>
<string>merchant.io.rnlab.cirilla</string>
</array>
Example:
Change merchant.io.rnlab.cirilla to your merchant ID
Update Apple Pay Required
Open file: cirilla/lib/express_checkout.dart
Change export package:
export 'package:cirilla/widgets/cirilla_express_checkout_dev.dart';
to
export 'package:express_checkout/express_checkout.dart';