组件基本写法
默认情况下
- 组件的 flexDirection 为 列( flexDirection : 'column').
- view的默认宽度为100%
组件的默认值
<pre>
<code>
div, span {
box-sizing: border-box;
position: relative;
display: flex;
flex-direction: column;
align-items: stretch;
flex-shrink: 0;
border: 0 solid black;
margin: 0;
padding: 0;
}
</code>
</pre>
参考fb css layout
https://github.com/facebook/css-layout
搜索框
<p>
代码部分
简单的listview
使用简单datasource数据填充方式
https://gist.github.com/sherlock221/7f55e35ed536f51dc7ce
下拉刷新的listview
代码: