我的环境:使用 uni-app 做的安卓端应用,亲测下面解决方案在 app 上是没有问题的:
详细方案请参考这个文档里的方法:https://uniapp.dcloud.io/collocation/pages?id=app-pulltorefresh
// 在 pages.json 文件
{
"pages": [
{
"path": "/pages/xxx/xxx",
"style": {
"navigationBarTitleText": "xxx",
"enablePullDownRefresh": true,
"app-plus": { // 关键代码
"pullToRefresh": {
"color": "#05A6F8" // 此处输入要改的前景色
}
}
}
}
]
}
原文:https://www.cnblogs.com/haveadate/p/14735603.html