ListView

February 17, 2016 ยท View on GitHub

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 />
    )
  }
}