mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-05-17 04:32:26 +00:00
597fcc65e8
Add initial support for 'onLayout' when components mount and update. Ref #60
452 B
452 B
ListView
TODO
Props
children: any
Content to display over the image.
style: style
- ...View#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 />
)
}
}