I have a list of custom objects (List) . I need to send this data to React Native side to display in flat list . How do i do this ?This list is present in
class NativeToReact(reactContext: ReactApplicationContext,userManager: IUserManager) : ReactContextBaseJavaModule(reactContext)`
Since you would like to send an
ArrayList
, you would have to send aWritableArray
from the native side to react-native.On the react-native side, you can create a javascript module for your native module as follows:
You can then access the
ArrayList
you sent from the native side.NOTE: The answer does not show a complete setup for making use of a native module.