I want to implement apple pay sdk. for example from this swift tutorial for apple pay
let applePayController = PKPaymentAuthorizationViewController(paymentRequest: request)
self.present(applePayController!, animated: true, completion: nil)
I have only class with methods where I define some info, but How to present PKPaymentAuthorizationViewController over RN with Swift?
I use react-navigation, but I want to understand how push/present - custom native screen view? For example I want to try make native screen with kind "present modally" or full screen with some native stuff etc
I know how to export methods to RN, but how to show native screens/modals from sdk or libraries with swift