0
複数のリストアイテムを選択したときの背景色を変更するにはどうすればよいですか?私はreact-native-accordian
とreact-native-collapsible
を使用しており、コンテンツ内にフラットリストを使用しています。リストアイテムの背景を変更する
_renderContent(section, i, isActive)
{
//console.log("MY DATA---",section.time_slots);
return (
<List
style={inStyles.body}
containerStyle={{ borderTopWidth: 0, borderBottomWidth: 0 }}>
<FlatList
data={section.time_slots}
renderItem={
({ item,index }) =>
(
<ListItem
onPress={() => this.selectSlot(item,section.date,index)}
style = {[inStyles.list , {marginLeft : 15}, {marginRight : 5},
{backgroundColor: (this.state.selectedItem[index]) ? 'green' : 'red'}]}
title={`${item}`}
containerStyle={{ borderBottomWidth: 0 }}
/>
)
}
keyExtractor={item => section.date+item}
ItemSeparatorComponent={this.renderSeparator}
ListFooterComponent={this.renderFooter}
/>
</List>
);
}
リスト項目のスタイルをTouchableOpacity
で動的に変更したいだけです。しかし、そうすることはできません。
スクリーンショット
それはあなたの問題を解決していますか? –
コードは大きな助けとなりました。しかし、私はレンダリングの中でそれを正確には呼んでいません。私は上記のように編集しました。拡張可能リストと同じインデックスに関連付けられた複数の項目があります。したがって、特定のインデックスでアイテムを選択すると、すべてのリストで特定のアイテムが選択されます。この変更は、リストを再展開した後にのみ反映されます。 – Aishwarya
私は自分の答えを修正したいのですか、それとも問題は解決していますか? –