app.json-配置文件-window配置

window 选项

{
  "window": {
    "navigationBarBackgroundColor": "#ff3377",
    "navigationBarTitleText": "Apollo",
    "navigationBarTextStyle": "white",
    "enablePullDownRefresh": true,
    "backgroundTextStyle": "light",
    "backgroundColor": "#80aaff"
  }
}

设置后的原型

导航栏

navigationBarBackgroundColor 背景颜色 #ff3377
navigationBarTitleText 标题内容 Apollo
navigationBarTextStyle 标题颜色 white/black

下拉功能

enablePullDownRefresh false/true

背景

  • [下拉后,页面与导航栏之间的背景]
    backgroundTextStyle 设置风格light/dark
    backgroundColor 设置颜色

猜你喜欢

转载自blog.csdn.net/ApolloNing/article/details/81392179