Example of calling swift code from RN

This commit is contained in:
Artur Gurgul 2025-08-03 12:53:34 +02:00
parent 1a9884e0e9
commit 151ed6d78b
12 changed files with 86 additions and 6 deletions

View file

@ -0,0 +1,17 @@
//
// TestingServiceModuleBridge.m
// RNPlayground
//
// Created by Artur Gurgul on 03/08/2025.
//
#import <React/RCTBridgeModule.h>
// This tells React Native about the Swift class
@interface RCT_EXTERN_MODULE(TestingServiceModule, NSObject)
RCT_EXTERN_METHOD(greet:(NSString *)name
resolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject)
@end