
RN
DevilNoV
曾经从事J2SE的开发工作现在苦逼的Android开发者ios爱好者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
React Native开发报错not found in project :app.的解决办法
场景描述: 在配置好Android自动打包后,使用Android Studio是可以正常运行的,但是使用react-native run-android运行会报错:Task 'installDebug' not found in project ':app'. 报错信息 解决办法: 使用react-native run-android --variant channel01Debug运行,channel01Debug中的channel01为配置自动打包时的其中一个渠道,例如下面的配置,安装时可.原创 2020-06-08 10:53:32 · 2208 阅读 · 0 评论 -
Error: Unable to resolve module `./index` from `\node_modules\react-native\scripts/.`
Error: Unable to resolve module./indexfrom\node_modules\react-native\scripts/.: The module./indexcould not be found from\node_modules\react-native\scripts/.. Indeed, none of these files exist: ...原创 2019-04-01 11:19:21 · 8085 阅读 · 4 评论 -
react native antd-mobile-rn组件库集成使用
github地址 https://github.com/ant-design/antd-mobile-samples/tree/master/create-react-native-app 文档地址: https://rn.mobile.ant.design/docs/react/introduce-cn 集成 1. 安装antd-mobile-rn 库npm install antd-...原创 2019-04-02 12:41:56 · 1040 阅读 · 0 评论 -
React Native常用组件
第一部分 react-native-carousel 轮播图 react-native-countdown 倒计时 react-native-device-info 设备信息 react-native-fileupload 文件上传 react-native-icons 图标 react-native-image-picker 图片选择器 react-native-keychai...原创 2019-04-24 11:39:10 · 290 阅读 · 0 评论 -
React Native常用三方组件库大全
react-native -30 (每天一个Demo,共三十个,有些demo很不错哦) https://github.com/fangwei716/30-days-of-react-native 拖动九宫格 https://raw.githubusercontent.com/fangwei716/ThirtyDaysOfReactNative/screenshots/scr...原创 2019-04-24 11:51:15 · 2054 阅读 · 0 评论 -
安卓项目中调用react native组件,并传递参数
<React Native 混合开发(Android篇)>中介绍了,在RNHybridAndroid项目中使用react native组件有两种方式。 1 通过ReactInstanceManager的方式:灵活,可定制性强; 2 通过继承ReactActivity的方式:简单,可定制性差; 本节介绍如何向react native中传递参数 package com.example....原创 2019-06-03 16:44:34 · 1014 阅读 · 0 评论