React Native refreshControl 在下拉之前显示
Posted
技术标签:
【中文标题】React Native refreshControl 在下拉之前显示【英文标题】:React Native refreshControl showing before pulldown 【发布时间】:2016-08-03 14:12:25 【问题描述】:我已经实现了运行良好的 RefreshControl 组件,除了当我的视图最初加载时,我看到另一个 Refresh 控件的一部分显示在 NEW GAME 按钮上方。一旦我下拉,我就会得到我的数据并且错误消失,直到我重新启动应用程序。其他一切都很好,但似乎是 'title'、'tintColor' 和 'titleColor' 道具导致了问题,因为没有它们就没有错误。
这是我的代码:
<RefreshControl
refreshing=this.state.refreshing
onRefresh=this.onRefresh
title=I18n.t('coming')
tintColor="#dceafd"
titleColor="#dceafd"
/>
【问题讨论】:
【参考方案1】:我认为只需添加 backgroundColor: 'transparent' :)
【讨论】:
我可以确认这是可行的。我的代码如下所示:refreshControl=<RefreshControl style=backgroundColor:'transparent' refreshing=this.state.loading onRefresh=this.refreshItems/>
以上是关于React Native refreshControl 在下拉之前显示的主要内容,如果未能解决你的问题,请参考以下文章
react native 增加react-native-camera
更新 react-native-maps 以使用 create-react-native-app
react native 增加react-native-storage
React-Native 和 Expo:create-react-native-app 和 react-native init 之间的区别
什么是 react-native-cli 和 @react-native-community/cli?
React Native - 当 react-native 版本 > 0.55 时,无法通过 react-native-cli 创建新项目