
react-native
iteye_16691
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
React Native ScrollView去掉自带的间隔
使用ScrollView时,自带了一个类似marginTop的效果,将其去掉 <ScrollView automaticallyAdjustContentInsets={false} >原创 2016-01-07 12:25:20 · 465 阅读 · 0 评论 -
React Native ScrollView如何跳到顶部
React Native ScrollView How to Jump to the Top ? 页面中有个ScrollView,点击某个Button,跳到ScrollView的顶部。可以参考以下例子: <ScrollView ref={component => this._scrollView = component} /> //this._scrollView....原创 2016-01-07 12:33:59 · 618 阅读 · 0 评论 -
React Native 圆角模糊
React Native 圆角模糊如果使用borderRadius时,发现有些边角会模糊残缺,可以用overflow:'hidden'原创 2016-01-11 10:19:44 · 1339 阅读 · 0 评论 -
React Native WebView使用本地HTML文件
React Native WebView使用本地HTML文件这里注意本地的文件路径为:http://localhost:8081/iosPages/b.html HTML文件 /iosPages/b.html: <h1>this is a html file</h1> <p>this is content hello </p> ...原创 2016-01-13 12:22:50 · 904 阅读 · 0 评论 -
React Native切换版本
React Native切换版本 1. 修改package.json文件,修改其中的 "react-native": "^0.18" 2. 将node_modules目录删除 3. 执行以下命令: npm install react-native upgrade原创 2016-01-27 15:16:14 · 590 阅读 · 0 评论 -
React Native 调用Objective-C简单例子
React Native 调用Objective-C 参考:https://colinramsay.co.uk/2015/03/27/react-native-simple-native-module.html 在Xcode中,File->New->File->Cocoa Class-> (Class:'SomeString', Subclass Of:'NS...原创 2016-01-27 23:01:20 · 397 阅读 · 0 评论 -
react-native init AwesomeProject 很慢
React Native 新创建一个项目时很慢很慢,可以这样: 先下载一个AwesomeProject源代码 (不包含依赖),然后npm install 安装依赖 npm 使用taobao的依赖 npm config set registry https://registry.npm.taobao.org npm config set disturl https://npm.taoba...原创 2016-05-07 12:36:35 · 961 阅读 · 0 评论