我是新來的學習反應,和/陣營和本地人都遇到了以下問題。當點擊<TouchableWithoutFeedback>
元素時,視圖不會增加。下面陣營本地增量州onPress
代碼:
class SingleHabit extends Component {
constructor() {
super();
this.state = {count: 0};
}
_incrementCount() {
this.setState = ({
count: count + 1
});
}
render() {
return (
<TouchableWithoutFeedback onPress={() => this._incrementCount() }>
<View
style= {[
styles.singleHabit,
{backgroundColor: this.props.color}
]}
>
<Text style={styles.habitNameText}>{this.props.text}</Text>
<Text style={styles.countText}>{this.state.count}</Text>
</View>
</TouchableWithoutFeedback>
);
}
}
此外,在自主學習的興趣,如果有,反正你會重構這個(或只需更好的做事方式),我很想聽聽!
謝謝,這個工作! +感謝您的良好做法建議:) – Amz