您的位置:首页 > Web前端 > React

[React Native] Installing and Linking Modules with Native Code in React Native

2017-02-16 02:28 465 查看
Learn to install JavaScript modules that include native code. Some React Native modules include native code for Android and/or iOS in addition to JavaScript. We'll install the react-native-video component using npm install, and then link it with the react-native link command so that our Video component works properly on both iOS and Android.

For example:

npm i --save react-native-video


After you install the libaray, you also need to link it:

react-native link react-native-video
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐