中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何将应用见面的颜色延伸到底部导航条?
微信扫码分享
@Entry @Component struct Index { build() { Column() { Row() { Text("延伸到状态栏") }.backgroundColor('#F08080') .width("100%") .height("100%") .expandSafeArea([SafeAreaType.SYSTEM], [SafeAreaEdge.BOTTOM])//底部导航条颜色也变为#F08080 } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }