-
I couldn't find an answer from the documentation for whether it's possible to create custom native modules like one can for React Native? (And if it is possible, how would one go about it and what kind of limitations there are?) As an example to illustrate the scenario, let's say that I need to make an app that opens hotel room doors (using Bluetooth) with a commercial, third-party SDK the vendor only distributes as binaries for iOS and Android. I could make a native app, or I could make a React Native app and write my own "wrapper" native module that exposes those native third-party libraries to the JavaScript. The question is, could I also make a React Native for Web application that does something similar? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ah, I think I sort of found the answer from the React Native compatibility page of the docs. For |
Beta Was this translation helpful? Give feedback.
Ah, I think I sort of found the answer from the React Native compatibility page of the docs. For
NativeModules
it says, "Mocked. Missing ability to load native modules." I presume that means there will not be a way to do that – in the near future at least.