Files
react-native-web/docs/components/ListView.md
Nicolas Gallagher 3292ced765 Add new components
- ActivityIndicator
- Portal
- StaticContainer
- StaticRenderer
2016-02-17 00:20:02 -08:00

389 B

ListView

TODO

Props

children: any

Content to display over the image.

style: style

Examples

import React, { Component, ListView, PropTypes } from 'react-native'

export default class ListViewExample extends Component {
  static propTypes = {}

  static defaultProps = {}

  render() {
    return (
      <ListView />
    )
  }
}