在鸿蒙原生开发中TabBar背景颜色问题?文档上说TabBar默认背景色是透明的,想要做一个圆角TabBar的效果,代码如下:
@Entry
@Component
struct MainPage {
@State tabsIndex: number = 0
build() {
Tabs({ barPosition: BarPosition.End }) {
TabContent() {
Column()
.width('100%')
.height('100%')
.backgroundColor(Color.Grey)
}.tabBar(this.TabBarBuilder(0, '首页'))
TabContent() {
}.tabBar(this.TabBarBuilder(2, '消息'))
TabContent() {
}.tabBar(this.TabBarBuilder(3, '我的'))
}
.barHeight('56vp')
.barWidth('100%')
.width('100%')
.height('100%')
.scrollable(false)
.vertical(false)
.barMode(BarMode.Fixed)
.onChange((index: number) => {
this.tabsIndex = index
})
}
@Builder
TabBarBuilder(index: number, tabBarName: string) {
Column() {
Text(tabBarName)
.fontSize(14)
.fontColor(Color.Black)
}
.width('100%')
.height('100%')
.padding({ top: 6, bottom: 6 })
.alignItems(HorizontalAlign.Center)
.backgroundColor(Color.Red)
.borderRadius({
topLeft: index == 0 ? '24vp' : 0,
topRight: index == 3 ? '24vp' : 0
})
}
}
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。
你可以在Tabs组件上增加以下属性;
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。