
react-native
Zale-Ying
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
react-native-vector-icons 安装以及常见问题处理
1.在根目录执行 npm install react-native-vector-icons --save 或者: yarn add react-native-vector-icons --save 2.自动关联 react-native 版本大于0.30时可使用 react-native link; //自动关联 //手动关联可查阅 https://www.npmjs.com/...原创 2018-08-10 15:54:50 · 1450 阅读 · 0 评论 -
react-native-video 安装,以及常见错误处理
1.安装react-native-video yarn add react-native-video --save react-native link react-native-video 2.使用 import Video from 'react-native-video'; <Video source={{uri: "background"}} // ...原创 2018-08-18 11:06:09 · 2686 阅读 · 0 评论 -
react-native报错: null is not an object (evaluating '_RNGestureHandlerModule.default.Direction')
问题简述: 1.使用RN跨平台开发时使用react-navigation组件,需要链接原生库. 2.运行时报错null is not an object (evaluating '_RNGestureHandlerModule.default.Direction') 解决方案: 项目根目录下运行如下代码: react-native link 然后重新启动项目。 ...原创 2019-06-27 11:34:50 · 7762 阅读 · 3 评论