react-native@0.26
RefreshControl
升级后的有时会出现在iOS上ScrollView
的右上角。
正如文档所说,我正在使用RefreshControl:
...
<ScrollView
style={styles.container}
refreshControl={
<RefreshControl
refreshing={this.state.isRefreshing}
onRefresh={this.onPullToRefresh}
/>
}>
<View>
...
</View>
</ScrollView>
...
以下是有时不会刷新的事情:
现在我正在运行react-native@0.30.0
,这个指标仍然让我讨厌。
我是唯一面临此问题的人吗?
答案 0 :(得分:3)
通过将背景设置为透明色来解决...
...
<ScrollView
style={styles.container}
refreshControl={
<RefreshControl
refreshing={this.state.isRefreshing}
onRefresh={this.onPullToRefresh}
style={{backgroundColor: 'transparent'}}
/>
}>
...