react-native-scroll-into-view
Version:
React-Native port of DOMElement.scrollIntoView() web function, for ScrollView
7 lines • 343 B
JavaScript
import { wrapScrollViewHOC } from './hoc';
import { Container } from './container';
export * from "./hooks";
export const ScrollIntoView = Container;
export const wrapScrollView = (comp) => wrapScrollViewHOC(comp);
export const wrapScrollViewConfigured = (config) => (comp) => wrapScrollViewHOC(comp, config);
//# sourceMappingURL=index.js.map