When I add click event for the button it shows this error in ios simulatorこのエラーを解決するために、「RawTextは、明示的なテキストコンポーネントでラップする必要があり、」どのように反応し、ネイティブコンポーネント
renderLastSlide(index) {
if (index === this.props.data.length - 1) {
return (
<Container>
<Content>
<Button rounded light>
<Text>Light</Text>
onPress={this.props.onComplete}
</Button>
</Content>
</Container>
);
}
}
このエラーが発生し、このコードの問題は何ですか?
あなたのインデントが悪いので、これを編集してください。修正後、自分でエラーが表示されます。 –