mirror of
https://github.com/status-im/realm-js.git
synced 2025-02-22 11:18:15 +00:00
Add and tweak ListView wrapper methods
This commit is contained in:
parent
31db79e29b
commit
a55faef0ce
8
react-native/listview.js
vendored
8
react-native/listview.js
vendored
@ -167,8 +167,12 @@ class ListView extends React.Component {
|
||||
return item ? props.renderRow(item, sectionId, rowId, ...args) : null;
|
||||
}
|
||||
|
||||
scrollTo(x, y, ...extra) {
|
||||
this.refs.listView.scrollTo(x, y, ...extra);
|
||||
getInnerViewNode() {
|
||||
return this.refs.listView.getInnerViewNode();
|
||||
}
|
||||
|
||||
scrollTo(...args) {
|
||||
this.refs.listView.scrollTo(...args);
|
||||
}
|
||||
|
||||
setNativeProps(props) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user