Fix formatting

This commit is contained in:
Brent Vatne
2018-11-26 15:15:50 -08:00
parent 0c0c3b7bce
commit c02f1e978c

View File

@@ -20,39 +20,39 @@ export default function createNavigationAwareScrollable(Component: any) {
}
}
});
}
}
setNativeProps = (...args) => {
return this.getNode().setNativeProps(...args);
}
};
getScrollResponder = (...args) => {
return this.getNode().getScrollResponder(...args);
}
};
getScrollableNode = (...args) => {
return this.getNode().getScrollableNode(...args);
}
};
getInnerViewNode = (...args) => {
return this.getNode().getInnerViewNode(...args);
}
};
scrollTo = (...args) => {
return this.getNode().scrollTo(...args);
}
};
scrollToEnd = (...args) => {
return this.getNode().scrollToEnd(...args);
}
};
scrollWithoutAnimationTo = (...args) => {
return this.getNode().scrollWithoutAnimationTo(...args);
}
};
flashScrollIndicators = (...args) => {
return this.getNode().flashScrollIndicators(...args);
}
};
getNode() {
if (this._scrollRef === null) {
@@ -91,4 +91,3 @@ export default function createNavigationAwareScrollable(Component: any) {
Component
);
}