recyclerlistview icon indicating copy to clipboard operation
recyclerlistview copied to clipboard

ExternalScrollView not rendering views.

Open Only-IceSoul opened this issue 4 years ago • 1 comments

It is not rendering views, it only shows me 3 views. Help me pls. Reanimated 2

class ExternalScrollView extends BaseScrollView {
  scrollTo(scrollInput: {
    x: number;
    y: number;
    animated: boolean;
}){

  }
  render() {
    //@ts-ignore
    return  <Animated.ScrollView {...this.props} onScroll={ this.props.animatedEvent} 
    alwaysBounceHorizontal={false}
    alwaysBounceVertical={false}
    bounces={false}
    showsVerticalScrollIndicator={false}
    showsHorizontalScrollIndicator={false}
    overScrollMode='never' /> 
  }
}

Recyclerlistview code:


     <RecyclerListView 

            
              externalScrollView={ExternalScrollViewRe}
              //@ts-ignore 
              animatedEvent={onScroll}
                layoutProvider={layoutProvider}
               dataProvider={dataProvider}
                rowRenderer={(type:any,item:number,index:number)=>{
                  return <ItemView index={index} item={item} />
                }}
                
               />

Only-IceSoul avatar Oct 02 '21 20:10 Only-IceSoul

Any solutions?

shikhar119911 avatar Aug 14 '23 12:08 shikhar119911