Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 389 Bytes

ListView.md

File metadata and controls

31 lines (20 loc) · 389 Bytes

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