0.0.6 • Published 7 years ago
npm-demonativecommunication-package v0.0.6
npm-demoNativeCommunication-package
React-native npm package
Usage getModuleList() fetches list of native modules.
import CustomModule from 'npm-demonativecommunication-package';
CustomModule.RNDemo.getModuleList((error, data) => {
if (error) {
alert("Result: " + error);
} else {
alert("Result: " + JSON.stringify(data));
}
});