赞
踩
Tabs使用花括号包裹TabContent,每一个TabContent对应一个tabBar
@Entry @Component struct NavigationExample { private arr: number[] = [1, 2, 3]; build() { Column() { Tabs() { TabContent() { Text('首页的内容').fontSize(30) } .tabBar('首页') TabContent() { Text('推荐的内容').fontSize(30) } .tabBar('推荐') TabContent() { Text('发现的内容').fontSize(30) } .tabBar('发现') TabContent() { Text('我的内容').fontSize(30) } .tabBar("我的") } } .height('100%') .width('100%') .backgroundColor('#F1F3F5') } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。