I need to bind to a function that returns me if an item is checked or not, however the function that returns this is only executed once, is there a way to bind to this function?
<List dataArray={this.state.talhoes}
renderRow={(talhao) =>
<TouchableOpacity onPress={() => this.select(talhao)}>
<Card>
<CardItem>
<Thumbnail square size={40} source={{ uri: talhao.public_url_screenshot }} />
<Text style={{ paddingLeft: 10 }} > {talhao.name} </Text>
<Right>
<CheckBox checked={this.checkSelected(talhao)} /> //Aqui o problema
</Right>
</CardItem>
</Card>
</TouchableOpacity>
}>
</List>