mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-03-27 22:55:56 +08:00
33 lines
412 B
Markdown
33 lines
412 B
Markdown
# ListView
|
|
|
|
TODO
|
|
|
|
## Props
|
|
|
|
**children**: any
|
|
|
|
Content to display over the image.
|
|
|
|
**style**: style
|
|
|
|
+ ...[View#style](View.md)
|
|
|
|
## Examples
|
|
|
|
```js
|
|
import React, { Component, PropTypes } from 'react'
|
|
import { ListView } from 'react-native'
|
|
|
|
export default class ListViewExample extends Component {
|
|
static propTypes = {}
|
|
|
|
static defaultProps = {}
|
|
|
|
render() {
|
|
return (
|
|
<ListView />
|
|
)
|
|
}
|
|
}
|
|
```
|