react-native-virtualized-waterfall
v1.2.3
Published
a virtualized & infinite waterfall layout component for React-Native
Downloads
19
Maintainers
Readme
react-native-waterfall
a virtualized & infinite waterfall layout component for React-Native
Getting started
npm i react-native-virtualized-waterfall
or
yarn add react-native-virtualized-waterfall
Preview
related project: h.bilibli-rn
Props
please refer to type definition
*This project layout through known item height,so you must got item size before render
Usage
import Waterfall from "react-native-virtualized-waterfall";
<Waterfall
columnNum={2}
columnGap={10}
itemInfos={this.state.items}
bufferAmount={10}
infiniteThreshold={500}
heightGetter={this.heightGetter.bind(this)}
renderItem={(itemInfo, width, height, index) => {
return (
<Image
style={{
height,
width
}}
height={height}
width={width}
source={{
uri: itemInfo.url
}}
resizeMode={"contain"}
/>
);
}}
onRefresh={() => {
return this.fetchItems(true);
}}
onInfinite={() => this.fetchItems()}
/>