1、在pages.json中,给对应的页面设置自定义导航栏样式,navigationStyle设为custom(自定义)时,导航栏的字体颜色自动变成白色了,如果有需要就设为black
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "black",//修改最顶部状态栏的字体颜色可选white/black
"navigationBarTitleText": "首页",
}
},
2、定义自定义组件customNavbar,在组件中获取屏幕边界到安全区域的距离文章来源:https://www.toymoban.com/news/detail-754397.html
<template>
<view class="navbar" :style="{paddingTop:safeAreaInsets?.top+'px'}">
<view class="logo">
<image src="../../static/c1.png" mode=""></image>
<text>头部导航</text>
</view>
>
<view>
<text class="icon-search">搜索</text>
<text class="icon-scan"></text>
</view>
</view>
</template>
<script lang="ts" setup>
const {safeAreaInsets} =uni.getSystemInfoSync()
console.log(safeAreaInsets)
</script>
文章来源地址https://www.toymoban.com/news/detail-754397.html
到了这里,关于【uniapp】自定义导航栏时,设置安全距离,适配不同机型+最顶部的状态栏修改字体颜色的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!