Reputation: 1079
I tried to use getItemLayout but didn't success. And I can't find any other related parameters in the react native documentation.
Upvotes: 1
Views: 4917
Reputation: 1672
Use renderItem
to customize your item rows
renderItem={({item}) => <View style={{ height: 80 }}> // ... </View>}
for example.
Upvotes: 4