在此代码中有描述部分,注释部分和一个注释TextInput。 因此,我希望在注释部分查看开始时显示TextInput视图,即用户将滚动到注释部分时,当用户在描述部分时,将隐藏TextInput视图。
为此,我认为我们需要找到描述的高度View,如果它跨越那个高度,那么注释TextInput视图将是可见的。但我不确定。 建议是否有人知道解决方案。
renderCommentInput(){
return(
<View>
<TextInput/>
</View>
);
}
render() {
return(
<Container>
<ScrollView>
<View>
<Text>{this.state.description}</Text>
</View>
<View>
// The code to print comments in map
</View>
</ScrollView>
{this.renderCommentInput()}
</Container>
);
}