Harpreet Singh
Harpreet Singh
``` useScrollView={true} firstItem={data.length} initialScrollIndex={data.length} getItemLayout={(data, index) => ( {length: width, offset: width * index, index} )} horizontal={true} loop={true} loopClonesPerSide={data.length} data={data.banners} ``` This worked for me
@bd-arc noted. Will look for other option.
``` initialScrollIndex={this.props.store.banners.length-3} firstItem={this.props.store.banners.length-3} data={this.props.store.banners} ``` Working for me, without any overhead. How's this for a hack? @bd-arc 😄
3 is the default loopClonePerSide value
@ThatMate it might fix in the future release #678