Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 412 Bytes

ListView.md

File metadata and controls

32 lines (21 loc) · 412 Bytes

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