mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-03-27 22:55:56 +08:00
42 lines
405 B
Markdown
42 lines
405 B
Markdown
# ListView
|
|
|
|
## 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 />
|
|
)
|
|
}
|
|
}
|
|
```
|