ux-status-bar 状态栏占位组件用于自定义头部导航占位,会动态计算手机端状态栏高度,并产生一个占位 view。
属性名称 | 类型 | 默认值 | 作用 |
---|---|---|---|
background | String | 空字符 | 占位区域背景颜色 |
page.json
{
"path": "pages/switchPages/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
}
<template>
<view class="ux-column ux-flex1">
<ux-status-bar
background="rgba(0,0,255,0.35)"></ux-status-bar>
<view class="ux-body ux-mt-large">
<demo-logo title="基础"></demo-logo>
</view>
</view>
<!-- 其他布局 -->
</template>