I have functionality which will return me days of the week. Then I am mapping that array into ScrollView
. I am able to do this succesfully.
Below is my code:
<ScrollView
horizontal={true}
showsHorizontalScrollIndicator={false}>
{weekArray.map((item, index) => (
<TouchableOpacity
index={index}
onPress={() => setIndexSelect(index)}
key={index}>
<Text>
{index === weekArray.length - 1 ? ` ${item.day} ` : ` ${item.day} | `}
</Text>
</TouchableOpacity>
))}
</ScrollView>;
This works, But I wanted to do this using FlatList
, so tried below given code:
<FlatList
horizontal={true}
contentContainerStyle={styles.horizontalView}
data={weekArray}
renderItem={_renderItem}
keyExtractor={(item) => item.day}
/>;
const _renderItem = (item, index) => {
<TouchableOpacity
index={index}
onPress={() => setIndexSelect(index)}
key={index}
>
<Text>
{index === weekArray.length - 1 ? ` ${item.day} ` : ` ${item.day} | `}
</Text>
</TouchableOpacity>
}
I am getting just blank screen with this code.
I am very new to using FlatList
, so I am not able to figure out how to do this.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…