como arreglar el error de Linking.openUrl no funciona react native
// iOS 9.x or newer #import- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary *)options { return [RCTLinkingManager application:application openURL:url options:options]; } NO FUNCIONA NADA
Here is what the above code is Doing:
1. We’re importing the RCTLinkingManager module.
2. We’re overriding the application:openURL:options: method.
3. We’re calling the RCTLinkingManager’s application:openURL:options: method.