Files
react-native-web/docs/components/ListView.md
Nicolas Gallagher 597fcc65e8 [add] initial 'onLayout' support
Add initial support for 'onLayout' when components mount and update.

Ref #60
2016-07-10 22:15:51 -07:00

452 B

ListView

TODO

Props

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