mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 22:51:09 +08:00
43 lines
412 B
Markdown
43 lines
412 B
Markdown
# ListView
|
|
|
|
TODO
|
|
|
|
## Props
|
|
|
|
**children**: any
|
|
|
|
Content to display over the image.
|
|
|
|
**style**: style
|
|
|
|
+ `property` type
|
|
|
|
Defaults:
|
|
|
|
```js
|
|
{
|
|
}
|
|
```
|
|
|
|
## Examples
|
|
|
|
```js
|
|
import React, { ListView } from 'react-native-web'
|
|
|
|
const { Component, PropTypes } = React;
|
|
|
|
class Example extends Component {
|
|
static propTypes = {
|
|
}
|
|
|
|
static defaultProps = {
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ListView />
|
|
)
|
|
}
|
|
}
|
|
```
|