Hi! 👋
From the documentation, it looks like there is a very convenient way to create multiple views with different parameters on iOS:
However, I'm having trouble understanding how to achieve a couple of things on Android:
  1. Create a React Native instance as an Android Fragment (we need to integrate RN inside an existing native screen, so
    showReactNativeFragment
    doesn't seem like the right approach).
  2. Pass the component name and arguments on Android (the same values that are passed to
    AppRegistry.registerComponent
    ).
Could you please clarify how this is expected to work on Android?
Thank you!