Files
react-native-web/docs/components/ListView.md
2016-06-14 13:47:47 -07:00

412 B

ListView

TODO

Props

children: any

Content to display over the image.

style: style

Examples

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

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

  static defaultProps = {}

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