0
我需要在圖像上單擊時更改圖像,如果單擊圖像時需要再次更改圖像,如果再次單擊圖像時需要返回到先前狀態在圖像反應原生我的代碼是:單擊後更改圖像,再次單擊React Native時再次更改爲上一圖像
constructor (props) {
super(props);
this.state = {
toggleCollapse: false,
selectedUnit: null,
uri: require('../resources/icons/circle.png')
};
_onPress =() => {
this.props.onPressItem(this.props.item, this.props.index);
this._renderLessons(this.props.item, this.props.index);
this.setState({
toggleCollapse: !this.state.toggleCollapse,
uri: require('../resources/loader.gif')
});
}
你的解釋很棒:) – Andrew