I have set bounces = {false} in scrollview and Flatlist. After setting this I can't able to scroll the screen smoothly.
Any solution for this?
I am doing vertical scrolling in iOS. When I scroll the screen it gets bounced so I set bounces to false.
Refer the sample code
Note: It is a sample need to add lot of fields show as a large list
<ScrollView bounces = {false}>
<View style={{ aspectRatio: 4 / 5, alignSelf: 'center',width: '100%', opacity: 0.5,backgroundColor:'white'}}>
<FastImage resizeMode={FastImage.resizeMode.contain} style={{aspectRatio: 4 / 5, width: '100%',backgroundColor:'white'}} source={{ uri: 'item' }}/>
</View>
<Text style = {{fontSize:11, margin:"7%" }}> NAME </Text>
<Text style = {{fontSize:11, margin:"7%" }}> CLASS </Text>
<Text style = {{fontSize:11, margin:"7%" }}> AGE </Text>
<Text style = {{fontSize:11, margin:"7%" }}> GENDER </Text>
<Text style = {{fontSize:11, margin:"7%" }}> LOCALITY </Text>
<Text style = {{fontSize:11, margin:"7%" }}> EXPERIENCE </Text>
<Text style = {{fontSize:11, margin:"7%" }}> MOBILE NUMBER </Text>
<Text style = {{fontSize:11, margin:"7%" }}> ALTERNATIVE NUMBER </Text>
</ScrollView>