/** * This exposes the native BMCUI module as a JS module. This has a * function 'show' which takes the following parameters: * * 1. String message: A string with the text to toast */ import { NativeModules, requireNativeComponent } from 'react-native'; // 下一句中的BMCUI即对应上文 // public String getName()中返回的字符串 //使用export default时,对应的import语句不需要使用大括号 //export default NativeModules.BMCUI; //不使用export default时,对应的import语句需要使用大括号 export var BMCUI = NativeModules.BMCUI; export var ImagePicker = NativeModules.ImagePicker;