#鸿蒙通关秘籍#如何在HarmonyOS Next中使用NavDestination快速实现沉浸式状态?

HarmonyOS
2024-11-28 16:39:34
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
NEXT 天然编程

通过使用 NavDestination 作为页面的根容器,可以快速实现沉浸式状态。 NavDestination 从 API 11 开始默认支持安全区避让,这样在实现沉浸式状态时,不必担心页面重叠问题。

@Entry
@Component
struct Index {
  build() {
    NavDestination() {
      Column() {
        Text('沉浸式状态栏').fontColor('#fff')
      }.width('100%')
      .height('100%')
      .border({
        width:1,
        color:'red'
      })
    }
    .hideTitleBar(true)
    .backgroundImage(`https://img0.baidu.com/it/u=2299333132,3832906774&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500`)
    .backgroundImageSize({height:'100%', width:'100%'})
  }
}
分享
微博
QQ
微信
回复
2024-11-28 15:53:38
相关问题
如何实现沉浸状态栏?
646浏览 • 1回复 待解决
HarmonyOS 沉浸状态实现
146浏览 • 1回复 待解决