I am displaying the list item using index values along with a button while I click on the button in one of the list item index other list items should be displaying as disabled. Will it be possible?
<TouchableOpacity onPress={() => {this.downloadLessonItems()}}>
{!this.state.isDownloading && !this.state.isDownloaded &&
<Image
style={styles.imgContainer}
source={this.state.downloadImageURI} />}
</TouchableOpacity>
you can add
disabled
prop to TouchableOpacity as it takesdisabled
prop from TouchableWithoutFeedback and it's value should be booleanfor your code you can